diff options
author | crupest <crupest@outlook.com> | 2022-10-27 21:18:46 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-27 21:18:46 +0800 |
commit | fcf11f347c495230c163fd8ce0806f0fafaf5e17 (patch) | |
tree | 4490cb4d4dfe27ce4b571c3132ceedf87827c988 /.github/workflows | |
parent | 73c3dcc1c19f7ab312d21a9d90826f16e8cfe05d (diff) | |
parent | e52fb30ccf5e9cdbc9da171a670592b92fcdc359 (diff) | |
download | timeline-fcf11f347c495230c163fd8ce0806f0fafaf5e17.tar.gz timeline-fcf11f347c495230c163fd8ce0806f0fafaf5e17.tar.bz2 timeline-fcf11f347c495230c163fd8ce0806f0fafaf5e17.zip |
Merge pull request #1342 from crupest/renovate/actions-upload-artifact-3.x
chore(deps): update actions/upload-artifact action to v3
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/back-ci.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/front-ci.yaml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/back-ci.yaml b/.github/workflows/back-ci.yaml index 8fb71651..403b2c69 100644 --- a/.github/workflows/back-ci.yaml +++ b/.github/workflows/back-ci.yaml @@ -42,7 +42,7 @@ jobs: run: dotnet test --logger html --collect:"XPlat Code Coverage" --settings './Timeline.Tests/coverletArgs.runsettings'
- name: Upload Test Artifact
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v3
if: ${{ success() || failure() }}
with:
name: test-result
diff --git a/.github/workflows/front-ci.yaml b/.github/workflows/front-ci.yaml index 4bc393f3..18282058 100644 --- a/.github/workflows/front-ci.yaml +++ b/.github/workflows/front-ci.yaml @@ -43,7 +43,7 @@ jobs: run: pnpm run lint
- name: Upload Artifact
- uses: actions/upload-artifact@v2
+ uses: actions/upload-artifact@v3
with:
name: dist
path: FrontEnd/dist/
|