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 | |
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.
-rw-r--r-- | .github/workflows/push-test.yml | 4 | ||||
-rw-r--r-- | .github/workflows/release.yml | 6 |
2 files changed, 5 insertions, 5 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: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f62b4f34..901cdca2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,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 @@ -25,7 +25,7 @@ jobs: runs-on: ${{ matrix.platform }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: setup node uses: actions/setup-node@v1 with: @@ -67,7 +67,7 @@ jobs: needs: build runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/download-artifact@v3 - name: Create release file run: | |