Skip to content

Commit b0b4b0d

Browse files
committed
update all actions
1 parent b6723e7 commit b0b4b0d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ jobs:
209209
esac
210210
211211
- name: Create badge
212-
uses: emibcn/badge-action@v1
212+
uses: emibcn/badge-action@v2
213213
with:
214214
label: Tests
215215
status: "${{ fromJSON( steps.test-results.outputs.json ).stats.tests_succ }}/${{ fromJSON( steps.test-results.outputs.json ).stats.tests }}"
@@ -235,14 +235,14 @@ jobs:
235235

236236
- name: Fail workflow if tests failed
237237
if: steps.testRunner.outcome == 'failure' && (fromJSON(steps.test-results.outputs.json).conclusion == 'failure' || fromJSON(steps.test-results.outputs.json).stats.tests == 0)
238-
uses: actions/github-script@v3
238+
uses: actions/github-script@v7
239239
with:
240240
script: |
241241
core.setFailed('Tests failed!')
242242
243243
- name: Upload Coverage to codecov
244244
if: matrix.coverage && matrix.main
245-
uses: codecov/codecov-action@v3
245+
uses: codecov/codecov-action@v5
246246
with:
247247
working-directory: ./core
248248
files: ../CodeCoverage/tests-opencov/PlayMode/TestCoverageResults_0000.xml,../CodeCoverage/tests-opencov/PlayMode/TestCoverageResults_0001.xml,../CodeCoverage/tests-opencov/EditMode/TestCoverageResults_0000.xml,../CodeCoverage/tests-opencov/EditMode/TestCoverageResults_0001.xml
@@ -258,15 +258,15 @@ jobs:
258258

259259
- name: Setup Github Pages
260260
if: github.ref == 'refs/heads/main' && matrix.performance && always()
261-
uses: actions/configure-pages@v2
261+
uses: actions/configure-pages@v5
262262

263263
- name: Upload Pages Artifact
264264
if: github.ref == 'refs/heads/main' && matrix.performance && always()
265-
uses: actions/upload-pages-artifact@v1
265+
uses: actions/upload-pages-artifact@v3
266266
with:
267267
path: "./tests/PerformanceReport/Performance"
268268

269269
- name: Deploy to GitHub Pages
270270
if: github.ref == 'refs/heads/main' && matrix.performance && always()
271271
id: deployment
272-
uses: actions/deploy-pages@v1
272+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)