Skip to content

Commit

Permalink
🤖 Update upload-artifact and download-artifact
Browse files Browse the repository at this point in the history
CI was getting errors because the versions we were previously using were
deprecated.  This commit updates the actions to the latest versions.
  • Loading branch information
kirkkwang committed Sep 17, 2024
1 parent b511db6 commit 3780ea0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
run: bundle exec rake spec

- name: Upload coverage results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4.4.0
with:
name: coverage-report-${{ matrix.ruby }}
path: coverage
Expand All @@ -56,7 +56,7 @@ jobs:

steps:
- name: Download coverage report
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.8
with:
name: coverage-report-2.7
path: coverage
Expand Down

0 comments on commit 3780ea0

Please sign in to comment.