From bd1c44c839e1141e4af75f8dfd78306e3c2c4e25 Mon Sep 17 00:00:00 2001 From: Paul Bob <69730720+Paul-Bob@users.noreply.github.com> Date: Thu, 30 Jan 2025 17:35:15 +0200 Subject: [PATCH] chore: update actions/upload-artifact to v4 (#3621) --- .github/workflows/i18n-tests.yml | 4 ++-- .github/workflows/system-tests.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/i18n-tests.yml b/.github/workflows/i18n-tests.yml index 4d7fd4984..58fe52afc 100644 --- a/.github/workflows/i18n-tests.yml +++ b/.github/workflows/i18n-tests.yml @@ -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 }} diff --git a/.github/workflows/system-tests.yml b/.github/workflows/system-tests.yml index 66a06de50..91193e02a 100644 --- a/.github/workflows/system-tests.yml +++ b/.github/workflows/system-tests.yml @@ -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 }}