Skip to content

Commit

Permalink
Bump actions/checkout, /setup-node and /cache in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
krystof-k committed Mar 10, 2024
1 parent 3bd94e0 commit 5fe9073
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-and-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,17 @@ jobs:
changes: ${{ steps.check-for-changes.outputs.diff }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
- name: Get Yarn cache folder path
id: yarn-cache-folder
run: echo "path=$( yarn cache dir )" >> $GITHUB_OUTPUT
- name: Set up Yarn cache
id: yarn-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.yarn-cache-folder.outputs.path }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-and-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
- name: Get Yarn cache folder path
id: yarn-cache-folder
run: echo "path=$( yarn cache dir )" >> $GITHUB_OUTPUT
- name: Set up Yarn cache
id: yarn-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.yarn-cache-folder.outputs.path }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Prepare new version number helper
Expand Down

0 comments on commit 5fe9073

Please sign in to comment.