Skip to content

Commit

Permalink
chore: update actions/upload-artifact to v4 (#3621)
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul-Bob authored Jan 30, 2025
1 parent 4eaa232 commit bd1c44c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/i18n-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,12 @@ jobs:
id: run_tests
run: bundle exec rspec spec/system/i18n_spec.rb

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: coverage_system_${{ matrix.rails }}_ruby_${{ matrix.ruby }}
path: coverage/.resultset.json

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always() && steps.run_tests.outcome == 'failure'
with:
name: rspec_failed_screenshots_rails_${{ matrix.rails }}_ruby_${{ matrix.ruby }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/system-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,12 @@ jobs:
id: run_tests
run: bundle exec rspec spec/system/ --tag=~i18n

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: coverage_system_${{ matrix.rails }}_ruby_${{ matrix.ruby }}
path: coverage/.resultset.json

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always() && steps.run_tests.outcome == 'failure'
with:
name: rspec_failed_screenshots_rails_${{ matrix.rails }}_ruby_${{ matrix.ruby }}
Expand Down

0 comments on commit bd1c44c

Please sign in to comment.