Skip to content

Commit 226f4c2

Browse files
Update GitHub Actions
1 parent 48597d2 commit 226f4c2

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@ jobs:
1212

1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616

1717
- name: Set up Node.js
18-
uses: actions/setup-node@v2
18+
uses: actions/setup-node@v5
1919
with:
20+
cache: yarn
2021
node-version-file: .nvmrc
2122

2223
- name: Enable corepack

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@ jobs:
1010

1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v5
1414
with:
1515
fetch-depth: 0
1616

1717
- name: Set up Node.js
18-
uses: actions/setup-node@v2
18+
uses: actions/setup-node@v5
1919
with:
20+
cache: yarn
2021
node-version-file: .nvmrc
2122

2223
- name: Enable corepack

.github/workflows/storybook.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,14 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
with:
1414
fetch-depth: 0
1515

1616
- name: Set up Node.js
17-
uses: actions/setup-node@v2
17+
uses: actions/setup-node@v5
1818
with:
19+
cache: yarn
1920
node-version-file: .nvmrc
2021

2122
- name: Enable corepack
@@ -28,7 +29,7 @@ jobs:
2829
run: yarn install
2930

3031
- name: Deploy Storybook
31-
uses: chromaui/action@v1
32+
uses: chromaui/action@v11
3233
with:
3334
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
3435
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)