Skip to content

Commit ab02d19

Browse files
committed
chore: update workflow tools
1 parent b622ade commit ab02d19

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

.github/actions/tag-git-release/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ runs:
2121
- name: Install git-cliff
2222
uses: taiki-e/install-action@v2
2323
with:
24-
tool: git-cliff@2.8.0
24+
tool: git-cliff@2.10.0
2525

2626
- name: Install cargo-edit
2727
uses: taiki-e/install-action@v2
2828
with:
29-
tool: cargo-edit@0.12.2
29+
tool: cargo-edit@0.13.7
3030

3131
- name: "Setup jq"
3232
uses: dcarbone/install-jq-action@v3
3333
with:
34-
version: "1.7"
34+
version: "1.8.1"
3535
force: true
3636

3737
- uses: webfactory/[email protected]

.github/workflows/CI.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
- name: Install cargo-deny
7373
uses: taiki-e/install-action@v2
7474
with:
75-
tool: cargo-deny@0.14.15
75+
tool: cargo-deny@0.18.3
7676

7777
- name: Check licenses
7878
run: |
@@ -92,7 +92,7 @@ jobs:
9292
- name: Install cargo-shear
9393
uses: taiki-e/install-action@v2
9494
with:
95-
tool: cargo-shear@1.3.3
95+
tool: cargo-shear@1.4.1
9696

9797
- name: cargo-shear
9898
run: cargo shear --fix
@@ -346,7 +346,7 @@ jobs:
346346
uses: taiki-e/install-action@v2
347347
if: matrix.settings.os == 'ubuntu-latest'
348348
with:
349-
tool: cargo-hack@0.5.29
349+
tool: cargo-hack@0.6.37
350350

351351
- name: Check compilation
352352
if: matrix.settings.os == 'ubuntu-latest'
@@ -457,7 +457,7 @@ jobs:
457457
cargo clean
458458
(cd ./bindings && cargo clean)
459459
460-
npm install -g @swc/cli@0.1.56
460+
npm install -g @swc/cli@0.7.8
461461
npm link
462462
npm install -g file:$PWD
463463
@@ -488,7 +488,7 @@ jobs:
488488
# yarn global add qunit failonlyreporter
489489
490490
# Download
491-
# git clone --depth 1 https://github.com/reduxjs/redux.git -b v4.1.0 tests/integration/redux/repo
491+
# git clone --depth 1 https://github.com/reduxjs/redux.git -b v5.0.1 tests/integration/redux/repo
492492
# TODO
493493
# swc --sync tests/integration/redux/repo/src/ -d tests/integration/redux/repo/lib/
494494
# echo "module.exports=require('./index')" > tests/integration/redux/repo/lib/redux.js

.github/workflows/bench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- name: Install cargo-codspeed
6666
uses: taiki-e/install-action@v2
6767
with:
68-
68+
6969

7070
- name: Build the benchmark target(s)
7171
run: ./scripts/bench/build-crate.sh ${{ matrix.crate }}

.github/workflows/ecosystem-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888

8989
# - if: ${{ failure() && github.event.inputs.mode == 'passing' }}
9090
# name: Notify failure
91-
# uses: tsickert/discord-webhook@v5.3.0
91+
# uses: tsickert/discord-webhook@v7.0.0
9292
# with:
9393
# webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }}
9494
# content: |
@@ -97,7 +97,7 @@ jobs:
9797

9898
# - if: ${{ success() &&github.event.inputs.mode == 'ignored' }}
9999
# name: Notify success
100-
# uses: tsickert/discord-webhook@v5.3.0
100+
# uses: tsickert/discord-webhook@v7.0.0
101101
# with:
102102
# webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }}
103103
# content: |

.github/workflows/publish-crates.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Install cargo-edit
4141
uses: taiki-e/install-action@v2
4242
with:
43-
tool: cargo-edit@0.12.2
43+
tool: cargo-edit@0.13.7
4444

4545
- name: Install cargo-mono
4646
uses: taiki-e/install-action@v2

.github/workflows/publish-npm-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -233,10 +233,10 @@ jobs:
233233
with:
234234
targets: ${{ matrix.settings.target }}
235235
toolchain: ${{ steps.toolchain.outputs.version }}
236-
- uses: goto-bus-stop/setup-zig@v2
236+
- uses: goto-bus-stop/setup-zig@v2 # unmaintained
237237
if: ${{ matrix.settings.target == 'armv7-unknown-linux-gnueabihf' }}
238238
with:
239-
version: 0.12.0
239+
version: 0.14.1
240240
- name: Cache cargo registry
241241
uses: actions/cache@v4
242242
with:
@@ -379,7 +379,7 @@ jobs:
379379
- name: Build TypeScript
380380
run: yarn build:ts
381381
- name: Test bindings
382-
run: docker run --rm -v $(pwd):/swc -w /swc node:${{ matrix.node }}-slim sh -c 'npm install -f -g [email protected].19 && env DISABLE_PLUGIN_E2E_TESTS=true yarn test:${{ inputs.package }}'
382+
run: docker run --rm -v $(pwd):/swc -w /swc node:${{ matrix.node }}-slim sh -c 'npm install -f -g [email protected] && env DISABLE_PLUGIN_E2E_TESTS=true yarn test:${{ inputs.package }}'
383383
test-linux-x64-musl-binding:
384384
name: Test bindings on x86_64-unknown-linux-musl - node@${{ matrix.node }}
385385
needs:
@@ -419,7 +419,7 @@ jobs:
419419
- name: Build TypeScript
420420
run: yarn build:ts
421421
- name: Test bindings
422-
run: docker run --rm -v $(pwd):/swc -w /swc node:${{ matrix.node }}-alpine sh -c 'npm install -f -g [email protected].19 && env DISABLE_PLUGIN_E2E_TESTS=true yarn test:${{ inputs.package }}'
422+
run: docker run --rm -v $(pwd):/swc -w /swc node:${{ matrix.node }}-alpine sh -c 'npm install -f -g [email protected] && env DISABLE_PLUGIN_E2E_TESTS=true yarn test:${{ inputs.package }}'
423423
# test-linux-aarch64-musl-binding:
424424
# name: Test bindings on aarch64-unknown-linux-musl - node@lts
425425
# needs:

0 commit comments

Comments
 (0)