Skip to content

Commit f9be057

Browse files
authored
fix: upgrade actions/upload-artifact to v4 in GitHub Actions variant (#574)
v3 has been deprecated as v4 moves to an immutable-based design which has some performance benefits, among other things; that change doesn't impact how we're using artifacts, but that's all the more reason to upgrade. See [the migration notes for more information](https://github.com/actions/upload-artifact/blob/main/docs/MIGRATION.md) for more about what's changed.
1 parent 6154d26 commit f9be057

File tree

1 file changed

+1
-1
lines changed
  • variants/github_actions_ci/workflows

1 file changed

+1
-1
lines changed

variants/github_actions_ci/workflows/ci.yml.tt

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
- run: <%= package_json.manager.native_install_command(frozen: true).join(" ") %>
114114
- run: bundle exec rspec spec --format progress
115115
- name: Archive spec outputs
116-
uses: actions/upload-artifact@v3
116+
uses: actions/upload-artifact@v4
117117
if: success() || failure()
118118
with:
119119
name: rspec-output-screenshots

0 commit comments

Comments
 (0)