Skip to content

Commit 7fe7b69

Browse files
chore(deps): update github-actions (#11489)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 864edbd commit 7fe7b69

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

.github/workflows/ci-lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
runs-on: ubuntu-latest
106106
steps:
107107
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
108-
- uses: crate-ci/typos@a67079b4ae32e18c3f53d75368c52ce53b5fb56b # v1.35.4
108+
- uses: crate-ci/typos@a4c3e43aea0a9e9b9e6578d2731ebd9a27e8f6cd # v1.35.5
109109
with:
110110
files: .
111111

.github/workflows/issue-close-require.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
if: github.repository_owner == 'web-infra-dev'
1616
steps:
1717
- name: need reproduce
18-
uses: actions-cool/issues-helper@50068f49b7b2b3857270ead65e2d02e4459b022c # v3
18+
uses: actions-cool/issues-helper@45d75b6cf72bf4f254be6230cb887ad002702491 # v3
1919
with:
2020
actions: "close-issues"
2121
labels: "need reproduction"
@@ -24,7 +24,7 @@ jobs:
2424
Since the issue was labeled with `need reproduction`, but no response in 14 days. This issue will be closed. Feel free to comment and reopen it if you have any further questions.
2525
2626
- name: need more info
27-
uses: actions-cool/issues-helper@50068f49b7b2b3857270ead65e2d02e4459b022c # v3
27+
uses: actions-cool/issues-helper@45d75b6cf72bf4f254be6230cb887ad002702491 # v3
2828
with:
2929
actions: "close-issues"
3030
labels: "need more info"
@@ -33,7 +33,7 @@ jobs:
3333
Since the issue was labeled with `need more info`, but no response in 14 days. This issue will be closed. Feel free to comment and reopen it if you have any further questions.
3434
3535
- name: awaiting feedback
36-
uses: actions-cool/issues-helper@50068f49b7b2b3857270ead65e2d02e4459b022c # v3
36+
uses: actions-cool/issues-helper@45d75b6cf72bf4f254be6230cb887ad002702491 # v3
3737
with:
3838
actions: "close-issues"
3939
labels: "awaiting more feedback"

.github/workflows/label-auto-comment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- name: 🤔 Need Reproduce
2121
if: github.event.label.name == 'need reproduction'
22-
uses: actions-cool/issues-helper@50068f49b7b2b3857270ead65e2d02e4459b022c # v3.6.2
22+
uses: actions-cool/issues-helper@45d75b6cf72bf4f254be6230cb887ad002702491 # v3.6.3
2323
with:
2424
actions: "create-comment"
2525
token: ${{ secrets.GITHUB_TOKEN }}
@@ -28,7 +28,7 @@ jobs:
2828
Hello @${{ github.event.issue.user.login }}, sorry we can't investigate the problem further without reproduction demo, please provide a repro demo by forking [rspack-repro](https://github.com/web-infra-dev/rspack-repro), or provide a minimal GitHub repository by yourself. Issues labeled by `need reproduction` will be closed if no activities in 14 days.
2929
- name: invalid
3030
if: github.event.label.name == 'invalid'
31-
uses: actions-cool/issues-helper@50068f49b7b2b3857270ead65e2d02e4459b022c # v3.6.2
31+
uses: actions-cool/issues-helper@45d75b6cf72bf4f254be6230cb887ad002702491 # v3.6.3
3232
with:
3333
actions: "create-comment,close-issue"
3434
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/reusable-build-bench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
key: build-bench-${{ inputs.target }}
4343

4444
- name: Install cargo-codspeed binary
45-
uses: taiki-e/install-action@3839ec485e8ef50e4a86e9cd116260b68a412c07 # v2
45+
uses: taiki-e/install-action@3ee5d63d29478156148c0b53e9f3447829b47bc2 # v2
4646
with:
4747
4848

.github/workflows/reusable-build-codspeed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
key: build-bench-${{ inputs.target }}
3131

3232
- name: Install cargo-codspeed binary
33-
uses: taiki-e/install-action@3839ec485e8ef50e4a86e9cd116260b68a412c07 # v2
33+
uses: taiki-e/install-action@3ee5d63d29478156148c0b53e9f3447829b47bc2 # v2
3434
with:
3535
3636

.github/workflows/reusable-release-crates.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
save-if: true
4343
key: release
4444

45-
- uses: cargo-bins/cargo-binstall@79e4beb1e02f733a26129a6bf26c37dab4ab3307 # v1.14.4
45+
- uses: cargo-bins/cargo-binstall@0dca8cf8dfb40cb77a29cece06933ce674674523 # v1.15.1
4646

4747
- name: Install cargo-workspaces
4848
run: cargo binstall --no-confirm [email protected] --force

.github/workflows/reusable-rust-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949

5050
- name: Install cargo-binstall
5151
if: ${{ inputs.cargo-check-strategy == 'separated' }}
52-
uses: cargo-bins/cargo-binstall@79e4beb1e02f733a26129a6bf26c37dab4ab3307 # v1.14.4
52+
uses: cargo-bins/cargo-binstall@0dca8cf8dfb40cb77a29cece06933ce674674523 # v1.15.1
5353

5454
- name: Install cargo-workspaces
5555
if: ${{ inputs.cargo-check-strategy == 'separated' }}
@@ -95,15 +95,15 @@ jobs:
9595
run: cargo codegen
9696

9797
- name: Install cargo-deny
98-
uses: taiki-e/install-action@3839ec485e8ef50e4a86e9cd116260b68a412c07 # v2
98+
uses: taiki-e/install-action@3ee5d63d29478156148c0b53e9f3447829b47bc2 # v2
9999
with:
100100
101101
- name: Check licenses
102102
run: |
103103
cargo deny --all-features check license bans
104104
cargo xtask deny-ext
105105
106-
- uses: cargo-bins/cargo-binstall@79e4beb1e02f733a26129a6bf26c37dab4ab3307 # v1.14.4
106+
- uses: cargo-bins/cargo-binstall@0dca8cf8dfb40cb77a29cece06933ce674674523 # v1.15.1
107107
- run: cargo binstall --no-confirm [email protected] --force
108108
- run: cargo shear
109109

0 commit comments

Comments
 (0)