Skip to content

Commit

Permalink
Update workflow to use artifact actions v4 and update actions/cache f… (
Browse files Browse the repository at this point in the history
#650)

…rom v2 to v4

Changes made
- Updating artifact actions `master` to v4
- actions/cache is recommended to be [updated from v2 to either v3 or
v4](https://github.com/actions/cache?tab=readme-ov-file#%EF%B8%8F-important-changes)
(picked v4)
  • Loading branch information
aaronlippold authored Dec 19, 2024
2 parents b7bdab4 + 3513b29 commit a46d108
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
with:
node-version: '14'
- name: Cache ruby gems
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
- name: Run eslint
run: yarn lint:ci
- name: Upload coverage results
uses: actions/upload-artifact@master
uses: actions/upload-artifact@v4
if: always()
with:
name: coverage-report
Expand Down

0 comments on commit a46d108

Please sign in to comment.