diff options
author | renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> | 2022-10-27 13:01:02 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-27 13:01:02 +0000 |
commit | e52fb30ccf5e9cdbc9da171a670592b92fcdc359 (patch) | |
tree | 889e3eb76d5b9af2ee63a4f3527628e0e6cbdc77 | |
parent | 5cb75e28f686bd707792d4a12bf71c30c9f49645 (diff) | |
download | timeline-e52fb30ccf5e9cdbc9da171a670592b92fcdc359.tar.gz timeline-e52fb30ccf5e9cdbc9da171a670592b92fcdc359.tar.bz2 timeline-e52fb30ccf5e9cdbc9da171a670592b92fcdc359.zip |
chore(deps): update actions/upload-artifact action to v3
-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 80352279..7f5a424f 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/
|