Skip to content

Commit

Permalink
GitHub actions: Update version of actions/upload-artifact task (#10349)
Browse files Browse the repository at this point in the history
GitHub actions is complaining that we are using an old, deprecated version of the `actions/upload-artifact` task.
  • Loading branch information
cwize1 authored Sep 4, 2024
1 parent ae193e0 commit e286e15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go-test-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
sudo env "PATH=$PATH" make go-test-coverage
- name: Upload test coverage
uses: actions/upload-artifact@v2.1.4
uses: actions/upload-artifact@v4
with:
name: TestCoverage
path: toolkit/out/tools/test_coverage_report.html
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
fi
exit 0
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: linted_specs
Expand Down

0 comments on commit e286e15

Please sign in to comment.