Skip to content

Commit 96f482a

Browse files
committed
Update actions versions to v3 to suppress warnings on build
1 parent 194861a commit 96f482a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,16 @@ jobs:
3030

3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@v2
33+
uses: actions/checkout@v3
3434

3535
- name: Install Node.js 16.x
36-
uses: actions/setup-node@v2
36+
uses: actions/setup-node@v3
3737
with:
3838
node-version: '14'
3939
registry-url: 'https://registry.npmjs.org'
4040

4141
# - name: Install Python 2.7
42-
# uses: actions/setup-python@v2
42+
# uses: actions/setup-python@v3
4343
# with:
4444
# python-version: '2.7'
4545

@@ -80,7 +80,7 @@ jobs:
8080
npm run build
8181
8282
- name: Upload [GitHub Actions]
83-
uses: actions/upload-artifact@v2
83+
uses: actions/upload-artifact@v3
8484
with:
8585
name: ${{ env.JOB_TRANSFER_ARTIFACT }}
8686
path: dist
@@ -107,13 +107,13 @@ jobs:
107107

108108
steps:
109109
- name: Download job transfer artifact
110-
uses: actions/download-artifact@v2
110+
uses: actions/download-artifact@v3
111111
with:
112112
name: ${{ env.JOB_TRANSFER_ARTIFACT }}
113113
path: ${{ env.JOB_TRANSFER_ARTIFACT }}
114114

115115
- name: Upload tester build artifact
116-
uses: actions/upload-artifact@v2
116+
uses: actions/upload-artifact@v3
117117
with:
118118
name: ${{ matrix.artifact.name }}
119119
path: ${{ env.JOB_TRANSFER_ARTIFACT }}/${{ matrix.artifact.path }}
@@ -124,7 +124,7 @@ jobs:
124124
runs-on: ubuntu-latest
125125
steps:
126126
- name: Download [GitHub Actions]
127-
uses: actions/download-artifact@v2
127+
uses: actions/download-artifact@v3
128128
with:
129129
name: ${{ env.JOB_TRANSFER_ARTIFACT }}
130130
path: ${{ env.JOB_TRANSFER_ARTIFACT }}

0 commit comments

Comments
 (0)