Skip to content

Commit

Permalink
fix: updated to new actions versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Filipe Forattini committed Jun 7, 2022
1 parent 0dfa6d2 commit 08eb384
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ jobs:
run: sudo snap install yq

- name: Install | QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v2

- name: Install | Docker Buildx
uses: docker/setup-buildx-action@v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,21 +201,21 @@ jobs:
# load caches
- name: Load cache from yarn.lock
uses: actions/cache@v2
uses: actions/cache@v3
if: steps.node_setup.outputs.cache_key == 'yarn.lock'
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}

- name: Load cache from package-lock.json
uses: actions/cache@v2
uses: actions/cache@v3
if: steps.node_setup.outputs.cache_key == 'package-lock.json'
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}

- name: Load cache from package.json
uses: actions/cache@v2
uses: actions/cache@v3
if: steps.node_setup.outputs.cache_key == 'package-lock.json'
with:
path: '**/node_modules'
Expand Down

0 comments on commit 08eb384

Please sign in to comment.