Skip to content

Commit

Permalink
github: Update actions/upload-artifact GitHub Action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
torokati44 committed Jan 29, 2024
1 parent 367f585 commit e0de391
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/chart-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
echo "::group::Running chart tests"
inet_run_chart_tests -m release -f showcases
echo "::endgroup::"
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always() # even if the test failed, of course
with:
name: chart-test-results
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/feature-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
# this indirectly calls the script named simply "inet", which handles the MODE envvar internally
./featuretest
echo "::endgroup::"
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always() # even if the test failed, of course
with:
name: log-${{ matrix.split }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/statistical-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
echo "::group::Running statistical tests"
inet_run_statistical_tests -m release
echo "::endgroup::"
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always() # even if the test failed, of course
with:
name: statistical-test-results
Expand Down

0 comments on commit e0de391

Please sign in to comment.