Skip to content

Commit

Permalink
Merge pull request #919 from datacite/update-workflows
Browse files Browse the repository at this point in the history
Upgrade artifact and cache actions
  • Loading branch information
digitaldogsbody authored Jan 17, 2025
2 parents cf3798d + 0419720 commit d9a6f23
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT

- uses: actions/cache@v3
- uses: actions/cache@v4
id: cypress-cache
with:
path: |
Expand All @@ -38,7 +38,7 @@ jobs:
./node_modules/.bin/ember build --output-path="test_build" --environment=development
- name: Upload Test Build artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test_build
path: test_build/
path: test_build/
4 changes: 2 additions & 2 deletions .github/workflows/cypress_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT

- uses: actions/cache@v3
- uses: actions/cache@v4
id: cypress-cache
with:
path: |
Expand All @@ -28,7 +28,7 @@ jobs:
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}

- name: Download Test Build artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: test_build
path: test_build/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ember_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT

- uses: actions/cache@v3
- uses: actions/cache@v4
id: cypress-cache
with:
path: |
Expand All @@ -26,7 +26,7 @@ jobs:
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}

- name: Download Test Build artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: test_build
path: test_build/
Expand Down

0 comments on commit d9a6f23

Please sign in to comment.