ci: bump github actions (#6026)

* ci: bump actions/checkout from 2 to 3

* ci: bump actions/cache from 2 to 3

* ci: bump actions/upload-artifact from 2 to 3

* ci: bump actions/download-artifact from 2 to 3
This commit is contained in:
Frazer Smith 2022-05-15 06:31:34 +01:00 committed by GitHub
parent 44e1f2319f
commit c864bf1b0f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 18 deletions

View file

@ -20,7 +20,7 @@ jobs:
if: ${{ github.event.inputs.nightly != 'false' && github.repository == 'citra-emu/citra' }}
steps:
# this checkout is required to make sure the GitHub Actions scripts are available
- uses: actions/checkout@v2
- uses: actions/checkout@v3
name: Pre-checkout
with:
submodules: false
@ -38,7 +38,7 @@ jobs:
return checkBaseChanges(github, context);
- run: npm install execa@5
if: ${{ steps.check-changes.outputs.result == 'true' }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3
name: Checkout
if: ${{ steps.check-changes.outputs.result == 'true' }}
with:
@ -62,7 +62,7 @@ jobs:
if: ${{ github.event.inputs.canary != 'false' && github.repository == 'citra-emu/citra' }}
steps:
# this checkout is required to make sure the GitHub Actions scripts are available
- uses: actions/checkout@v2
- uses: actions/checkout@v3
name: Pre-checkout
with:
submodules: false
@ -79,7 +79,7 @@ jobs:
return checkCanaryChanges(github, context);
- run: npm install execa@5
if: ${{ steps.check-changes.outputs.result == 'true' }}
- uses: actions/checkout@v2
- uses: actions/checkout@v3
name: Checkout
if: ${{ steps.check-changes.outputs.result == 'true' }}
with: