Skip to content

Commit 6a66030

Browse files
chore(deps): update patch/minor dependencies
1 parent 84647b9 commit 6a66030

12 files changed

Lines changed: 860 additions & 938 deletions

File tree

.github/workflows/check.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
node-version: ${{ env.LATEST_NODE_VERSION }}
3434

3535
- name: Install pnpm and dependencies
36-
uses: apify/actions/pnpm-install@v1.3.1
36+
uses: apify/actions/pnpm-install@v1.4.0
3737

3838
- name: Run TSC
3939
run: pnpm run build
@@ -57,7 +57,7 @@ jobs:
5757
node-version: ${{ env.LATEST_NODE_VERSION }}
5858

5959
- name: Install pnpm and dependencies
60-
uses: apify/actions/pnpm-install@v1.3.1
60+
uses: apify/actions/pnpm-install@v1.4.0
6161

6262
- name: Run lint checks
6363
run: pnpm run lint
@@ -93,7 +93,7 @@ jobs:
9393
node-version: ${{ matrix.node-version }}
9494

9595
- name: Install pnpm and dependencies
96-
uses: apify/actions/pnpm-install@v1.3.1
96+
uses: apify/actions/pnpm-install@v1.4.0
9797

9898
- name: Set up Python (Windows)
9999
if: ${{ matrix.os == 'windows-2025' }}
@@ -126,7 +126,7 @@ jobs:
126126
node-version: ${{ env.LATEST_NODE_VERSION }}
127127

128128
- name: Install pnpm and dependencies
129-
uses: apify/actions/pnpm-install@v1.3.1
129+
uses: apify/actions/pnpm-install@v1.4.0
130130

131131
- name: Run API tests
132132
env:
@@ -161,7 +161,7 @@ jobs:
161161
node-version: ${{ env.LATEST_NODE_VERSION }}
162162

163163
- name: Install pnpm and dependencies
164-
uses: apify/actions/pnpm-install@v1.3.1
164+
uses: apify/actions/pnpm-install@v1.4.0
165165

166166
- name: Set up Python ${{ matrix.python-version }}
167167
uses: actions/setup-python@v7
@@ -209,7 +209,7 @@ jobs:
209209
node-version: ${{ env.LATEST_NODE_VERSION }}
210210

211211
- name: Install pnpm and dependencies
212-
uses: apify/actions/pnpm-install@v1.3.1
212+
uses: apify/actions/pnpm-install@v1.4.0
213213

214214
- name: Build & deploy docs
215215
run: pnpm --filter apify-cli-website run build
@@ -243,7 +243,7 @@ jobs:
243243
node-version: ${{ env.LATEST_NODE_VERSION }}
244244

245245
- name: Install pnpm and dependencies
246-
uses: apify/actions/pnpm-install@v1.3.1
246+
uses: apify/actions/pnpm-install@v1.4.0
247247

248248
- name: Install bun
249249
uses: oven-sh/setup-bun@v2

.github/workflows/docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
node-version: 24
3232

3333
- name: Install pnpm and dependencies
34-
uses: apify/actions/pnpm-install@v1.3.1
34+
uses: apify/actions/pnpm-install@v1.4.0
3535

3636
- name: Build docs
3737
run: |
@@ -46,7 +46,7 @@ jobs:
4646
SEGMENT_TOKEN: ${{ secrets.SEGMENT_TOKEN }}
4747

4848
- name: Commit the updated package(-lock).json
49-
uses: apify/actions/signed-commit@v1.3.0
49+
uses: apify/actions/signed-commit@v1.4.0
5050
with:
5151
message: "chore: Automatic theme updating workflow [skip ci]"
5252
add: 'website/package.json pnpm-lock.yaml'

.github/workflows/e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
node-version: 24
5353

5454
- name: Install pnpm and dependencies
55-
uses: apify/actions/pnpm-install@v1.3.1
55+
uses: apify/actions/pnpm-install@v1.4.0
5656

5757
- name: Build CLI from source
5858
run: pnpm run build

.github/workflows/pre_release.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
changelog: ${{ steps.release_metadata.outputs.changelog }}
2323
release_notes: ${{ steps.release_metadata.outputs.release_notes }}
2424
steps:
25-
- uses: apify/actions/git-cliff-release@v1.3.0
25+
- uses: apify/actions/git-cliff-release@v1.4.0
2626
name: Prepare release metadata
2727
id: release_metadata
2828
with:
@@ -33,7 +33,7 @@ jobs:
3333
name: Wait for code checks to pass
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: lewagon/wait-on-check-action@v1.8.0
36+
- uses: lewagon/wait-on-check-action@v1.9.0
3737
with:
3838
ref: ${{ github.sha }}
3939
repo-token: ${{ secrets.GITHUB_TOKEN }}
@@ -61,7 +61,7 @@ jobs:
6161
registry-url: https://registry.npmjs.org
6262

6363
- name: Install pnpm and dependencies
64-
uses: apify/actions/pnpm-install@v1.3.1
64+
uses: apify/actions/pnpm-install@v1.4.0
6565

6666
- name: Update package version in package.json
6767
run: pnpm version ${{ needs.release_metadata.outputs.version_number }} --no-git-tag-version --allow-same-version
@@ -71,7 +71,7 @@ jobs:
7171

7272
- name: Commit changes
7373
id: commit
74-
uses: apify/actions/signed-commit@v1.3.0
74+
uses: apify/actions/signed-commit@v1.4.0
7575
with:
7676
message: "chore(release): Update changelog and package version [skip ci]"
7777
pull: '--rebase --autostash'
@@ -114,7 +114,7 @@ jobs:
114114
registry-url: https://registry.npmjs.org
115115

116116
- name: Install pnpm and dependencies
117-
uses: apify/actions/pnpm-install@v1.3.1
117+
uses: apify/actions/pnpm-install@v1.4.0
118118

119119
- name: Install bun
120120
uses: oven-sh/setup-bun@v2
@@ -189,7 +189,7 @@ jobs:
189189
node-version: 24
190190

191191
- name: Install pnpm and dependencies
192-
uses: apify/actions/pnpm-install@v1.3.1
192+
uses: apify/actions/pnpm-install@v1.4.0
193193

194194
- name: Set pre-release version
195195
run: pnpm version ${{ needs.update_changelog.outputs.pre_release_version }} --no-git-tag-version --allow-same-version --no-git-checks
@@ -219,7 +219,7 @@ jobs:
219219

220220
steps:
221221
- name: Execute publish workflow
222-
uses: apify/actions/execute-workflow@v1.3.0
222+
uses: apify/actions/execute-workflow@v1.4.0
223223
with:
224224
workflow: publish_to_npm.yaml
225225
inputs: >

.github/workflows/publish_to_npm.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
registry-url: "https://registry.npmjs.org"
3737

3838
- name: Install pnpm and dependencies
39-
uses: apify/actions/pnpm-install@v1.3.1
39+
uses: apify/actions/pnpm-install@v1.4.0
4040

4141
- name: Check version consistency and bump pre-release version (beta only)
4242
if: ${{ inputs.tag == 'beta' }}

.github/workflows/release.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
changelog: ${{ steps.release_metadata.outputs.changelog }}
3636
release_notes: ${{ steps.release_metadata.outputs.release_notes }}
3737
steps:
38-
- uses: apify/actions/git-cliff-release@v1.3.0
38+
- uses: apify/actions/git-cliff-release@v1.4.0
3939
name: Prepare release metadata
4040
id: release_metadata
4141
with:
@@ -61,7 +61,7 @@ jobs:
6161
echo 'skipped=false' >> $GITHUB_OUTPUT
6262
fi
6363
64-
- uses: lewagon/wait-on-check-action@v1.8.0
64+
- uses: lewagon/wait-on-check-action@v1.9.0
6565
if: ${{ steps.check_skip.outputs.skipped == 'false' }}
6666
with:
6767
ref: ${{ github.sha }}
@@ -88,7 +88,7 @@ jobs:
8888
node-version: 24
8989

9090
- name: Install pnpm and dependencies
91-
uses: apify/actions/pnpm-install@v1.3.1
91+
uses: apify/actions/pnpm-install@v1.4.0
9292

9393
- name: Update package version in package.json
9494
run: pnpm version ${{ needs.release_metadata.outputs.version_number }} --no-git-tag-version --allow-same-version
@@ -112,7 +112,7 @@ jobs:
112112
113113
- name: Commit changes
114114
id: commit
115-
uses: apify/actions/signed-commit@v1.3.0
115+
uses: apify/actions/signed-commit@v1.4.0
116116
with:
117117
message: "chore(release): Update changelog and package version [skip ci]"
118118
pull: '--rebase --autostash'
@@ -149,7 +149,7 @@ jobs:
149149
registry-url: https://registry.npmjs.org
150150

151151
- name: Install pnpm and dependencies
152-
uses: apify/actions/pnpm-install@v1.3.1
152+
uses: apify/actions/pnpm-install@v1.4.0
153153

154154
- name: Install bun
155155
uses: oven-sh/setup-bun@v2
@@ -224,7 +224,7 @@ jobs:
224224
node-version: 24
225225

226226
- name: Install pnpm and dependencies
227-
uses: apify/actions/pnpm-install@v1.3.1
227+
uses: apify/actions/pnpm-install@v1.4.0
228228

229229
- name: Report install size
230230
id: install-size
@@ -249,7 +249,7 @@ jobs:
249249
runs-on: ubuntu-latest
250250
steps:
251251
- name: Execute publish workflow
252-
uses: apify/actions/execute-workflow@v1.3.0
252+
uses: apify/actions/execute-workflow@v1.4.0
253253
with:
254254
workflow: publish_to_npm.yaml
255255
inputs: >

.github/workflows/version_docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
node-version: 24
2323

2424
- name: Install pnpm and dependencies
25-
uses: apify/actions/pnpm-install@v1.3.1
25+
uses: apify/actions/pnpm-install@v1.4.0
2626

2727
- name: Snapshot the current version
2828
id: version
@@ -36,7 +36,7 @@ jobs:
3636
pnpm --filter apify-cli-website exec -- docusaurus docs:version $MAJOR_MINOR
3737
3838
- name: Commit and push the version snapshot
39-
uses: apify/actions/signed-commit@v1.3.0
39+
uses: apify/actions/signed-commit@v1.4.0
4040
with:
4141
message: "docs: version docs for ${{ steps.version.outputs.version }} [docs build]"
4242
pull: '--rebase --autostash'

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
24.18.0
1+
24.19.0

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134
"lint-staged": "^17.0.0",
135135
"mock-stdin": "^1.0.0",
136136
"oxfmt": "0.61.0",
137-
"oxlint": "1.71.0",
137+
"oxlint": "1.77.0",
138138
"oxlint-tsgolint": "0.22.1",
139139
"rimraf": "~6.1.3",
140140
"tsdown": "^0.22.0",
@@ -143,10 +143,10 @@
143143
"vitest": "^4.1.8"
144144
},
145145
"volta": {
146-
"node": "24.18.0",
147-
"pnpm": "11.8.0"
146+
"node": "24.19.0",
147+
"pnpm": "11.20.0"
148148
},
149-
"packageManager": "pnpm@11.8.0",
149+
"packageManager": "pnpm@11.20.0",
150150
"devEngines": {
151151
"runtime": [
152152
{

0 commit comments

Comments
 (0)