From e5e4784c9aae516bb0b578950b75df3d8cbd23b1 Mon Sep 17 00:00:00 2001 From: Paul Bob Date: Thu, 30 Jan 2025 17:31:07 +0200 Subject: [PATCH] chore: update actions/upload-artifact to v4 --- .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 4d7fd49842..58fe52afcd 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 66a06de509..91193e02ab 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 }}