Skip to content

Commit 7046146

Browse files
chore(deps): pin dependencies (#340)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 8594da2 commit 7046146

File tree

6 files changed

+30
-30
lines changed

6 files changed

+30
-30
lines changed

.github/actions/setup-go/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ runs:
1414
steps:
1515
- name: Install Go
1616
id: install-go
17-
uses: actions/setup-go@v5
17+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
1818
with:
1919
go-version: ${{ inputs.go-version }}
2020
cache: false
@@ -25,7 +25,7 @@ runs:
2525
run: sudo rm -rf ~/go/pkg/mod/golang.org/toolchain*
2626

2727
- name: Go cache
28-
uses: actions/[email protected]
28+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
2929
if: runner.environment == 'github-hosted'
3030
with:
3131
key: setup-go-${{ runner.os }}-${{ steps.install-go.outputs.go-version }}-${{ inputs.cache-name }}-${{ hashFiles('**/go.sum') }}

.github/actions/setup-node/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ runs:
66

77
steps:
88
- name: Setup Node.js
9-
uses: actions/setup-node@v4
9+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
1010
with:
1111
node-version: '24'
1212

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ jobs:
3939
go-version: ['1.25.0']
4040
steps:
4141
- name: Checkout code
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
4343
with:
4444
submodules: true
4545
- name: Setup Node
46-
uses: actions/setup-node@v4
46+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
4747
with:
4848
node-version: '24'
4949

@@ -60,7 +60,7 @@ jobs:
6060
runs-on: rspack-ubuntu-22.04-large
6161
steps:
6262
- name: Checkout code
63-
uses: actions/checkout@v4
63+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
6464
with:
6565
submodules: true
6666

@@ -74,7 +74,7 @@ jobs:
7474
cache-name: go-lint
7575

7676
- name: golangci-lint
77-
uses: golangci/golangci-lint-action@v8
77+
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8
7878
with:
7979
version: v2.4.0
8080
args: --timeout=5m ./cmd/... ./internal/...
@@ -98,7 +98,7 @@ jobs:
9898
go-version: ['1.25.0']
9999
steps:
100100
- name: Checkout code
101-
uses: actions/checkout@v4
101+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
102102
with:
103103
submodules: true
104104

@@ -153,7 +153,7 @@ jobs:
153153
runs-on: rspack-ubuntu-22.04-large
154154
steps:
155155
- name: Checkout code
156-
uses: actions/checkout@v4
156+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
157157
with:
158158
submodules: true
159159

@@ -175,7 +175,7 @@ jobs:
175175
runs-on: ubuntu-latest
176176
steps:
177177
- name: Checkout code
178-
uses: actions/checkout@v4
178+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
179179
with:
180180
submodules: true
181181

.github/workflows/copilot-setup-steps.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ jobs:
2929
# If you do not check out your code, Copilot will do this for you.
3030
steps:
3131
- name: Checkout code
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
3333

3434
- name: Setup Node
35-
uses: actions/setup-node@v4
35+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
3636
with:
3737
node-version: '24'
3838
- name: Setup Go
39-
uses: actions/setup-go@v5
39+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
4040
with:
4141
go-version: 1.25.0
4242
- name: Install pnpm

.github/workflows/release.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,14 @@ jobs:
6767
fi
6868
6969
- name: Checkout
70-
uses: actions/checkout@v4
70+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
7171
with:
7272
fetch-depth: 1
7373
ref: ${{ github.event.inputs.branch }}
7474
submodules: true
7575

7676
- name: Setup Node.js
77-
uses: actions/setup-node@v4
77+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
7878
with:
7979
node-version: '24'
8080
# Update npm to the latest version to enable OIDC
@@ -90,7 +90,7 @@ jobs:
9090
run: pnpm install --frozen-lockfile
9191

9292
- name: Download Artifact
93-
uses: actions/[email protected]
93+
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
9494
with:
9595
path: binaries
9696

@@ -114,7 +114,7 @@ jobs:
114114
environment: release
115115
steps:
116116
- name: Checkout
117-
uses: actions/checkout@v4
117+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
118118
with:
119119
fetch-depth: 1
120120
ref: ${{ github.event.inputs.branch }}
@@ -124,7 +124,7 @@ jobs:
124124
uses: ./.github/actions/setup-node
125125

126126
- name: Download Artifact
127-
uses: actions/[email protected]
127+
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
128128
with:
129129
path: binaries
130130

@@ -147,7 +147,7 @@ jobs:
147147
fi
148148
fi
149149
- name: Upload VSCE artifact
150-
uses: actions/upload-artifact@v4
150+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
151151
with:
152152
path: packages/vscode-extension/rslint-*.vsix
153153

@@ -159,7 +159,7 @@ jobs:
159159
environment: release
160160
steps:
161161
- name: Checkout
162-
uses: actions/checkout@v4
162+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
163163
with:
164164
fetch-depth: 1
165165
ref: ${{ github.event.inputs.branch }}
@@ -169,7 +169,7 @@ jobs:
169169
uses: ./.github/actions/setup-node
170170

171171
- name: Download Artifact
172-
uses: actions/[email protected]
172+
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
173173
with:
174174
path: binaries
175175

@@ -208,14 +208,14 @@ jobs:
208208
runs-on: rspack-ubuntu-22.04-large
209209
steps:
210210
- name: Checkout
211-
uses: actions/checkout@v4
211+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
212212
with:
213213
fetch-depth: 1
214214
ref: ${{ github.event.inputs.branch }}
215215
submodules: true
216216

217217
- name: Setup Node.js
218-
uses: actions/setup-node@v4
218+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
219219
with:
220220
node-version: '24'
221221

@@ -232,7 +232,7 @@ jobs:
232232
run: pnpm install --frozen-lockfile
233233

234234
- name: Download Artifact
235-
uses: actions/[email protected]
235+
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
236236
with:
237237
path: binaries
238238

@@ -306,14 +306,14 @@ jobs:
306306
runs-on: rspack-ubuntu-22.04-large
307307
steps:
308308
- name: Checkout
309-
uses: actions/checkout@v4
309+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
310310
with:
311311
fetch-depth: 1
312312
ref: ${{ github.event.inputs.branch }}
313313
submodules: true
314314

315315
- name: Setup Node.js
316-
uses: actions/setup-node@v4
316+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
317317
with:
318318
node-version: '24'
319319

@@ -334,7 +334,7 @@ jobs:
334334
GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -o ${{ matrix.node_os }}-${{ matrix.node_arch }}-rslint ./cmd/rslint
335335
336336
- name: Upload artifact
337-
uses: actions/upload-artifact@v4
337+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
338338
with:
339339
name: ${{ matrix.node_os }}-${{ matrix.node_arch }}-rslint
340340
path: ${{ matrix.node_os }}-${{ matrix.node_arch }}-rslint

.github/workflows/update-rule-manifest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout repository
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
1414
with:
1515
fetch-depth: 0
1616

1717
- name: Set up Node.js
18-
uses: actions/setup-node@v4
18+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
1919
with:
2020
node-version: 20
2121

@@ -32,7 +32,7 @@ jobs:
3232
node scripts/gen-rule-manifest.js
3333
3434
- name: Create Pull Request if rule-manifest.json changed
35-
uses: peter-evans/create-pull-request@v5
35+
uses: peter-evans/create-pull-request@4e1beaa7521e8b457b572c090b25bd3db56bf1c5 # v5
3636
with:
3737
commit-message: 'chore: update rule-manifest.json [auto]'
3838
title: 'chore: update rule-manifest.json [auto]'

0 commit comments

Comments
 (0)