Skip to content

Commit

Permalink
Update actions/upload-artifact action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 27, 2023
1 parent 7c098fa commit e05f1a8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
--configuration Release"

- name: 📚 Publish results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: benchmark-results
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: dotnet format --verify-no-changes --no-restore

- name: 📚 Artifact NuGet
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: success()
with:
name: nuget-packages
Expand Down Expand Up @@ -73,15 +73,15 @@ jobs:
verbose: true

- name: 📚 Artifact Test Results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: test-results
path: |
coverage/*.trx
- name: 📚 Artifact Test Coverage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: test-coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
-- xunit.parallelizeAssembly=true"

- name: 📚 Artifact Test Results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: performance-test-results
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/stryker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: echo ${{ steps.branch-name.outputs.current_branch }} | tr -d '\n' > branch.meta

- name: 📚 Test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: stryker-results
path: "**/*.meta"
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}

- name: 📚 Test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: stryker-results
path: "**/StrykerOutput/**"
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}

- name: 📚 Test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: stryker-results
path: "**/StrykerOutput/**"
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}

- name: 📚 Test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: stryker-results
path: "**/StrykerOutput/**"
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}

- name: 📚 Test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: stryker-results
path: "**/StrykerOutput/**"

0 comments on commit e05f1a8

Please sign in to comment.