Skip to content

Commit 470e991

Browse files
authored
Merge branch 'master' into chore/agent-rules
2 parents 1c86c32 + 6da6243 commit 470e991

File tree

5 files changed

+35
-17
lines changed

5 files changed

+35
-17
lines changed

.github/workflows/check.yaml

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
corepack enable
3838
corepack prepare yarn@stable --activate
3939
40-
- name: Activate cache for Node.js ${{ env.LATEST_NODE_VERSION }}
40+
- name: Activate cache for yarn
4141
uses: actions/setup-node@v4
4242
with:
4343
cache: yarn
@@ -71,7 +71,7 @@ jobs:
7171
corepack enable
7272
corepack prepare yarn@stable --activate
7373
74-
- name: Activate cache for Node.js ${{ env.LATEST_NODE_VERSION }}
74+
- name: Activate cache for yarn
7575
uses: actions/setup-node@v4
7676
with:
7777
cache: yarn
@@ -117,7 +117,12 @@ jobs:
117117
corepack enable
118118
corepack prepare yarn@stable --activate
119119
120-
- name: Activate cache for Node.js ${{ matrix.node-version }}
120+
- name: Activate cache for npm
121+
uses: actions/setup-node@v4
122+
with:
123+
cache: npm
124+
125+
- name: Activate cache for yarn
121126
uses: actions/setup-node@v4
122127
with:
123128
cache: yarn
@@ -154,7 +159,12 @@ jobs:
154159
corepack enable
155160
corepack prepare yarn@stable --activate
156161
157-
- name: Activate cache for Node.js ${{ env.LATEST_NODE_VERSION }}
162+
- name: Activate cache for npm
163+
uses: actions/setup-node@v4
164+
with:
165+
cache: npm
166+
167+
- name: Activate cache for yarn
158168
uses: actions/setup-node@v4
159169
with:
160170
cache: yarn
@@ -199,7 +209,12 @@ jobs:
199209
corepack enable
200210
corepack prepare yarn@stable --activate
201211
202-
- name: Activate cache for Node.js ${{ env.LATEST_NODE_VERSION }}
212+
- name: Activate cache for npm
213+
uses: actions/setup-node@v4
214+
with:
215+
cache: npm
216+
217+
- name: Activate cache for yarn
203218
uses: actions/setup-node@v4
204219
with:
205220
cache: yarn
@@ -237,7 +252,7 @@ jobs:
237252
corepack enable
238253
corepack prepare yarn@stable --activate
239254
240-
- name: Activate cache for Node.js ${{ env.LATEST_NODE_VERSION }}
255+
- name: Activate cache for yarn
241256
uses: actions/setup-node@v4
242257
with:
243258
cache: yarn
@@ -284,7 +299,7 @@ jobs:
284299
corepack enable
285300
corepack prepare yarn@stable --activate
286301
287-
- name: Activate cache for Node.js ${{ env.LATEST_NODE_VERSION }}
302+
- name: Activate cache for yarn
288303
uses: actions/setup-node@v4
289304
with:
290305
cache: yarn

.github/workflows/cucumber.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
corepack enable
4040
corepack prepare yarn@stable --activate
4141
42-
- name: Activate cache for Node.js ${{ matrix.node-version }}
42+
- name: Activate cache for yarn
4343
uses: actions/setup-node@v4
4444
with:
4545
cache: yarn

.github/workflows/docs.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,30 +9,33 @@ on:
99
jobs:
1010
build:
1111
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
12+
1213
environment:
1314
name: github-pages
15+
1416
permissions:
1517
contents: write
1618
pages: write
1719
id-token: write
20+
1821
runs-on: ubuntu-latest
1922

2023
steps:
2124
- uses: actions/checkout@v4
2225
with:
2326
token: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }}
2427

25-
- name: Use Node.js 20
28+
- name: Use Node.js 22
2629
uses: actions/setup-node@v4
2730
with:
28-
node-version: 20
31+
node-version: 22
2932

3033
- name: Enable corepack
3134
run: |
3235
corepack enable
3336
corepack prepare yarn@stable --activate
3437
35-
- name: Activate cache for Node.js 20
38+
- name: Activate cache for yarn
3639
uses: actions/setup-node@v4
3740
with:
3841
cache: yarn

.github/workflows/pre_release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ jobs:
133133
corepack enable
134134
corepack prepare yarn@stable --activate
135135
136-
- name: Activate cache for Node.js 22
136+
- name: Activate cache for yarn
137137
uses: actions/setup-node@v4
138138
with:
139139
cache: yarn
@@ -238,7 +238,7 @@ jobs:
238238
corepack enable
239239
corepack prepare yarn@stable --activate
240240
241-
- name: Activate cache for Node.js 22
241+
- name: Activate cache for yarn
242242
uses: actions/setup-node@v4
243243
with:
244244
cache: yarn

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
corepack enable
9393
corepack prepare yarn@stable --activate
9494
95-
- name: Activate cache for Node.js 22
95+
- name: Activate cache for yarn
9696
uses: actions/setup-node@v4
9797
with:
9898
cache: yarn
@@ -156,7 +156,7 @@ jobs:
156156
corepack enable
157157
corepack prepare yarn@stable --activate
158158
159-
- name: Activate cache for Node.js 22
159+
- name: Activate cache for yarn
160160
uses: actions/setup-node@v4
161161
with:
162162
cache: yarn
@@ -259,7 +259,7 @@ jobs:
259259
corepack enable
260260
corepack prepare yarn@stable --activate
261261
262-
- name: Activate cache for Node.js 22
262+
- name: Activate cache for yarn
263263
uses: actions/setup-node@v4
264264
with:
265265
cache: yarn
@@ -275,7 +275,7 @@ jobs:
275275

276276
- name: Publish to NPM
277277
run: |
278-
yarn npm publish --provenance --access public --tag beta
278+
yarn npm publish --provenance --access public
279279
env:
280280
YARN_NPM_AUTH_TOKEN: ${{ secrets.APIFY_SERVICE_ACCOUNT_NPM_TOKEN }}
281281

0 commit comments

Comments
 (0)