Skip to content

Commit bd02c22

Browse files
build(deps): bump the github-actions group with 3 updates (#9359)
1 parent d0f482c commit bd02c22

File tree

7 files changed

+24
-16
lines changed

7 files changed

+24
-16
lines changed

.github/workflows/build_docs.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,10 @@ jobs:
3636
run: |
3737
rgb_version=`grep 'rgb = ' internal/core/Cargo.toml | sed 's/^.*"\(.*\)"/\1/'`
3838
echo "RUSTDOCFLAGS=$RUSTDOCFLAGS --extern-html-root-url rgb=https://docs.rs/rgb/$rgb_version/ --extern-html-root-url android_activity=https://docs.rs/android-activity/0.5/ --extern-html-root-url raw_window_handle=https://docs.rs/raw_window_handle/0.6 --extern-html-root-url winit=https://docs.rs/winit/0.30 --extern-html-root-url wgpu=https://docs.rs/wgpu/26 --extern-html-root-url input=https://docs.rs/input/0.9" >> $GITHUB_ENV
39-
- uses: actions/setup-node@v4
39+
- uses: actions/setup-node@v5
4040
with:
4141
node-version: 20
42+
package-manager-cache: false
4243
- uses: ./.github/actions/install-linux-dependencies
4344
- name: Install MS fonts for comic sans needed by one of the screenshots in the docs
4445
run: |

.github/workflows/ci.yaml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
- uses: ./.github/actions/install-linux-dependencies
7777
- uses: ./.github/actions/install-skia-dependencies
7878
- uses: ilammy/msvc-dev-cmd@v1
79-
- uses: actions/setup-python@v5
79+
- uses: actions/setup-python@v6
8080
with:
8181
python-version: '3.10'
8282
- name: Install Qt
@@ -139,9 +139,10 @@ jobs:
139139
- uses: ./.github/actions/install-skia-dependencies
140140
- name: Setup headless display
141141
uses: pyvista/setup-headless-display-action@v4
142-
- uses: actions/setup-node@v4
142+
- uses: actions/setup-node@v5
143143
with:
144144
node-version: 20
145+
package-manager-cache: false
145146
id: node-install
146147
- uses: pnpm/[email protected]
147148
with:
@@ -197,7 +198,7 @@ jobs:
197198
- uses: ./.github/actions/setup-rust
198199
with:
199200
key: x-napi-v2-${{ steps.node-install.outputs.node-version }} # the cache key consists of a manually bumpable version and the node version, as the cached rustc artifacts contain linking information where to find node.lib, which is in a versioned directory.
200-
- uses: actions/setup-python@v5
201+
- uses: actions/setup-python@v6
201202
with:
202203
python-version: "3.12"
203204
- name: Install uv
@@ -367,9 +368,10 @@ jobs:
367368
with:
368369
key: "vsce_1" # increment this to bust the cache if needed
369370
- uses: ./.github/actions/install-linux-dependencies
370-
- uses: actions/setup-node@v4
371+
- uses: actions/setup-node@v5
371372
with:
372373
node-version: 20
374+
package-manager-cache: false
373375
- name: Install wasm-pack
374376
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
375377
- name: Fake slint-lsp build
@@ -684,9 +686,10 @@ jobs:
684686
runs-on: ubuntu-latest
685687
steps:
686688
- uses: actions/checkout@v5
687-
- uses: actions/setup-node@v4
689+
- uses: actions/setup-node@v5
688690
with:
689691
node-version: 20
692+
package-manager-cache: false
690693
id: node-install
691694
- uses: pnpm/[email protected]
692695
with:

.github/workflows/nightly_snapshot.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,9 +245,10 @@ jobs:
245245
version: 10.14.0
246246
- name: Install GNU Sed
247247
run: brew install gnu-sed
248-
- uses: actions/setup-node@v4
248+
- uses: actions/setup-node@v5
249249
with:
250250
node-version: 20
251+
package-manager-cache: false
251252
- uses: actions/download-artifact@v5
252253
with:
253254
name: vscode-lsp-binary-x86_64-unknown-linux-gnu
@@ -322,9 +323,10 @@ jobs:
322323
runs-on: ubuntu-latest
323324
steps:
324325
- uses: actions/checkout@v5
325-
- uses: actions/setup-node@v4
326+
- uses: actions/setup-node@v5
326327
with:
327328
node-version: 20
329+
package-manager-cache: false
328330
id: node-install
329331
- uses: pnpm/[email protected]
330332
with:

.github/workflows/nightly_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
components: rust-src
111111
target: ${{matrix.target}}
112112
- name: Setup Zephyr project
113-
uses: zephyrproject-rtos/[email protected].7
113+
uses: zephyrproject-rtos/[email protected].8
114114
with:
115115
app-path: slint
116116
manifest-file-name: demos/printerdemo/zephyr/west.yaml

.github/workflows/publish_npm_package.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
steps:
2929
- uses: actions/checkout@v5
3030
# Setup .npmrc file to publish to npm
31-
- uses: actions/setup-node@v4
31+
- uses: actions/setup-node@v5
3232
with:
3333
node-version: "20.x"
3434
registry-url: "https://registry.npmjs.org"
@@ -90,7 +90,7 @@ jobs:
9090
with:
9191
target: ${{ matrix.rust-target }}
9292
# Setup .npmrc file to publish to npm
93-
- uses: actions/setup-node@v4
93+
- uses: actions/setup-node@v5
9494
with:
9595
node-version: "20.x"
9696
registry-url: "https://registry.npmjs.org"
@@ -148,7 +148,7 @@ jobs:
148148
- uses: ./.github/actions/install-linux-dependencies
149149
- uses: ./.github/actions/setup-rust
150150
# Setup .npmrc file to publish to npm
151-
- uses: actions/setup-node@v4
151+
- uses: actions/setup-node@v5
152152
with:
153153
node-version: "20.x"
154154
registry-url: "https://registry.npmjs.org"

.github/workflows/upload_pypi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- uses: actions/checkout@v5
4747
- uses: ./.github/actions/install-linux-dependencies
4848
if: runner.os == 'Linux'
49-
- uses: actions/setup-python@v5
49+
- uses: actions/setup-python@v6
5050
with:
5151
python-version: '3.12'
5252
- uses: ./.github/actions/setup-rust
@@ -101,7 +101,7 @@ jobs:
101101
- uses: ./.github/actions/setup-rust
102102
with:
103103
target: aarch64-apple-ios
104-
- uses: actions/setup-python@v5
104+
- uses: actions/setup-python@v6
105105
with:
106106
python-version: '3.12'
107107
- uses: baptiste0928/cargo-install@v3

.github/workflows/wasm_editor_and_interpreter.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ jobs:
2424
- uses: pnpm/[email protected]
2525
with:
2626
version: 10.14.0
27-
- uses: actions/setup-node@v4
27+
- uses: actions/setup-node@v5
2828
with:
2929
node-version: 20
30+
package-manager-cache: false
3031
- uses: ./.github/actions/setup-rust
3132
with:
3233
target: wasm32-unknown-unknown
@@ -56,9 +57,10 @@ jobs:
5657
runs-on: ubuntu-22.04
5758
steps:
5859
- uses: actions/checkout@v5
59-
- uses: actions/setup-node@v4
60+
- uses: actions/setup-node@v5
6061
with:
6162
node-version: 20
63+
package-manager-cache: false
6264
- uses: pnpm/[email protected]
6365
with:
6466
version: 10.14.0

0 commit comments

Comments
 (0)