Skip to content

Commit 8c9dcf0

Browse files
Fix action deprecation warnings (#502)
Co-authored-by: David Finol <[email protected]>
1 parent f35829a commit 8c9dcf0

File tree

8 files changed

+21
-20
lines changed

8 files changed

+21
-20
lines changed

.github/workflows/build-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ jobs:
6464
###########################
6565
# Checkout #
6666
###########################
67-
- uses: actions/checkout@v2
67+
- uses: actions/checkout@v3
6868
with:
6969
lfs: true
7070

7171
###########################
7272
# Cache #
7373
###########################
74-
- uses: actions/cache@v2
74+
- uses: actions/cache@v3
7575
with:
7676
path: ${{ matrix.projectPath }}/Library
7777
key: Library-${{ matrix.projectPath }}-ubuntu-${{ matrix.targetPlatform }}
@@ -93,7 +93,7 @@ jobs:
9393
###########################
9494
# Upload #
9595
###########################
96-
- uses: actions/upload-artifact@v2
96+
- uses: actions/upload-artifact@v3
9797
with:
9898
name: Build Ubuntu (${{ matrix.unityVersion }})
9999
path: build

.github/workflows/cleanup.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ jobs:
1515
cleanupCloudRunner:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v3
1919
if: github.event.event_type != 'pull_request_target'
2020
with:
2121
lfs: true
22-
- uses: actions/setup-node@v2
22+
- uses: actions/setup-node@v3
2323
with:
24-
node-version: 12.x
24+
node-version: 16.x
2525
- run: yarn
2626
- run: yarn run cli --help
2727
env:

.github/workflows/cloud-runner-async-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: ubuntu-latest
4141
steps:
4242
- name: Checkout (default)
43-
uses: actions/checkout@v2
43+
uses: actions/checkout@v3
4444
with:
4545
lfs: false
4646
- run: yarn

.github/workflows/cloud-runner-pipeline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- k8s
4747
steps:
4848
- name: Checkout (default)
49-
uses: actions/checkout@v2
49+
uses: actions/checkout@v3
5050
with:
5151
lfs: false
5252
- uses: google-github-actions/auth@v1
@@ -108,7 +108,7 @@ jobs:
108108
- Android # Build an Android .apk.
109109
steps:
110110
- name: Checkout (default)
111-
uses: actions/checkout@v2
111+
uses: actions/checkout@v3
112112
with:
113113
lfs: false
114114
- run: yarn
@@ -126,7 +126,7 @@ jobs:
126126
cloudRunnerCluster: ${{ matrix.cloudRunnerCluster }}
127127
- run: |
128128
cp ./cloud-runner-cache/cache/${{ steps.unity-build.outputs.CACHE_KEY }}/build/${{ steps.unity-build.outputs.BUILD_ARTIFACT }} ${{ steps.unity-build.outputs.BUILD_ARTIFACT }}
129-
- uses: actions/upload-artifact@v2
129+
- uses: actions/upload-artifact@v3
130130
with:
131131
name: ${{ matrix.cloudRunnerCluster }} Build (${{ matrix.targetPlatform }})
132132
path: ${{ steps.unity-build.outputs.BUILD_ARTIFACT }}

.github/workflows/mac-build-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ jobs:
2626
###########################
2727
# Checkout #
2828
###########################
29-
- uses: actions/checkout@v2
29+
- uses: actions/checkout@v3
3030
with:
3131
lfs: true
3232

3333
###########################
3434
# Cache #
3535
###########################
36-
- uses: actions/cache@v2
36+
- uses: actions/cache@v3
3737
with:
3838
path: ${{ matrix.projectPath }}/Library
3939
key: Library-${{ matrix.projectPath }}-macos-${{ matrix.targetPlatform }}
@@ -67,7 +67,7 @@ jobs:
6767
###########################
6868
# Upload #
6969
###########################
70-
- uses: actions/upload-artifact@v2
70+
- uses: actions/upload-artifact@v3
7171
with:
7272
name: Build MacOS (${{ matrix.unityVersion }})
7373
path: build

.github/workflows/windows-build-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ jobs:
2929
###########################
3030
# Checkout #
3131
###########################
32-
- uses: actions/checkout@v2
32+
- uses: actions/checkout@v3
3333
with:
3434
lfs: true
3535

3636
###########################
3737
# Cache #
3838
###########################
39-
- uses: actions/cache@v2
39+
- uses: actions/cache@v3
4040
with:
4141
path: ${{ matrix.projectPath }}/Library
4242
key: Library-${{ matrix.projectPath }}-windows-${{ matrix.targetPlatform }}
@@ -70,7 +70,7 @@ jobs:
7070
###########################
7171
# Upload #
7272
###########################
73-
- uses: actions/upload-artifact@v2
73+
- uses: actions/upload-artifact@v3
7474
with:
7575
name: Build Windows (${{ matrix.unityVersion }})
7676
path: build

dist/index.js

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)