diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2022-11-10 10:01:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-10 10:01:26 +0100 |
commit | c83d87103381706df262fdd07a78f4d50d86de39 (patch) | |
tree | 0a4dcf976052e6a6419ad2b872953d6d618680e6 /.github/workflows/push-test.yml | |
parent | 5ed92b3dee4a5446e5e52ab8c91bf712d5fe3458 (diff) | |
download | FlightCore-c83d87103381706df262fdd07a78f4d50d86de39.tar.gz FlightCore-c83d87103381706df262fdd07a78f4d50d86de39.zip |
chore: Bump checkout action version (#43)
Version 2 uses Node 12 which is being deprecated by GitHub.
Version 3 should use Node 16 instead.
Diffstat (limited to '.github/workflows/push-test.yml')
-rw-r--r-- | .github/workflows/push-test.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/push-test.yml b/.github/workflows/push-test.yml index c2189421..141a4287 100644 --- a/.github/workflows/push-test.yml +++ b/.github/workflows/push-test.yml @@ -6,7 +6,7 @@ jobs: ensure-same-version: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: install dependencies run: | pip install toml @@ -24,7 +24,7 @@ jobs: runs-on: ${{ matrix.platform }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: setup node uses: actions/setup-node@v1 with: |