Skip to content

Commit

Permalink
Fix more github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bjacobel committed Apr 7, 2024
1 parent 03ab77e commit 18ee1b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
aws-region: ${{ steps.config.outputs.Region }}
- name: Cache node_modules
id: cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('yarn.lock') }}
Expand All @@ -44,7 +44,7 @@ jobs:
aws s3 sync dist s3://${{ steps.config.outputs.ProjectFQDomain }} \
--acl public-read \
--cache-control max-age=31536000
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: dist
path: ./dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
# checkout only needed because codecov wants to know app file structure during upload
- name: 'Checkout'
uses: actions/checkout@master
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: coverage
- uses: codecov/codecov-action@v3
Expand Down

0 comments on commit 18ee1b6

Please sign in to comment.