Skip to content

Commit 51b34d8

Browse files
authored
Merge pull request #231 from theatlantic/OPS-5092/update-third-party-actions
chore(gha): Update 3rd party actions due to set-output deprecation
2 parents f2ddece + a1d66ad commit 51b34d8

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ jobs:
3737
NODE_ENV: test
3838

3939
steps:
40-
- uses: actions/checkout@v2
40+
- uses: actions/checkout@v3
4141

4242
- name: Set up Python ${{ matrix.python-version }}
43-
uses: actions/setup-python@v2
43+
uses: actions/setup-python@v4
4444
with:
4545
python-version: ${{ matrix.python-version }}
4646

@@ -53,14 +53,14 @@ jobs:
5353
5454
- name: Cache instrumented static files
5555
id: cache-test-dist
56-
uses: actions/cache@v2
56+
uses: actions/cache@v3
5757
with:
5858
path: nested_admin/tests/static
5959
key: test-dist-${{ hashFiles('package-lock.json', '.github/workflows/test.yml', 'webpack.config.js', 'package.json', '.*rc*', 'nested_admin/static/nested_admin/src/**/*.*s') }}
6060

6161
- name: Cache node_modules
6262
id: cache-node_modules
63-
uses: actions/cache@v2
63+
uses: actions/cache@v3
6464
with:
6565
path: node_modules
6666
key: node_modules-${{ hashFiles('package-lock.json') }}
@@ -91,7 +91,7 @@ jobs:
9191

9292
- name: Upload junit xml
9393
if: always()
94-
uses: actions/upload-artifact@v2
94+
uses: actions/upload-artifact@v3
9595
with:
9696
name: junit-reports
9797
path: reports/*.xml
@@ -125,17 +125,17 @@ jobs:
125125
language: javascript
126126

127127
steps:
128-
- uses: actions/checkout@v2
128+
- uses: actions/checkout@v3
129129

130-
- uses: actions/setup-python@v2
130+
- uses: actions/setup-python@v4
131131
if: matrix.language == 'python'
132132
with:
133133
python-version: 3.9
134134

135135
- name: Cache node_modules
136136
if: matrix.language == 'javascript'
137137
id: cache-node_modules
138-
uses: actions/cache@v2
138+
uses: actions/cache@v3
139139
with:
140140
path: node_modules
141141
key: node_modules-${{ hashFiles('package-lock.json') }}-lint
@@ -184,7 +184,7 @@ jobs:
184184
runs-on: ubuntu-latest
185185
name: "Report Test Results"
186186
steps:
187-
- uses: actions/download-artifact@v2
187+
- uses: actions/download-artifact@v3
188188
with:
189189
name: junit-reports
190190

0 commit comments

Comments
 (0)