Skip to content

Commit

Permalink
chore(deps): update actions/setup-node action to v4 (#11510)
Browse files Browse the repository at this point in the history
* chore(deps): update actions/setup-node action to v4

* Specify node-version and cache for setup-node actions

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: andrealouisestanderen <[email protected]>
  • Loading branch information
renovate[bot] and standeren authored Nov 30, 2023
1 parent 1b9dee3 commit cbde8d9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/actions/yarn-install/action.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
name: "My Shared Steps"
description: "Doing yarn installs with propper caching"
description: "Doing yarn installs with proper caching"
runs:
using: "composite"
steps:
- name: 'Setting up Node'
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
cache: 'yarn'

- name: "Getting yarn cache directory path"
id: yarn-cache-dir-path
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
with:
fetch-depth: 0

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
cache: 'yarn'

- name: Get yarn cache directory path
working-directory: frontend
Expand Down

0 comments on commit cbde8d9

Please sign in to comment.