Skip to content

Commit 3cdeeb1

Browse files
committed
Lock CI action versions and update them
1 parent 407a1af commit 3cdeeb1

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout the repository
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1616
- name: Extract the changelog
1717
id: changelog
1818
run: |
@@ -36,7 +36,7 @@ jobs:
3636
echo "EOF" >> $GITHUB_OUTPUT
3737
- name: Create the release
3838
if: steps.changelog.outputs.changelog_content != ''
39-
uses: softprops/action-gh-release@v2
39+
uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2.3.2
4040
with:
4141
name: ${{ github.ref_name }}
4242
body: '${{ steps.changelog.outputs.changelog_content }}'

.github/workflows/test.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout the repository
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1717
- name: Install pnpm
18-
uses: pnpm/action-setup@v4
18+
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
1919
with:
2020
version: 10
2121
- name: Install Node.js
22-
uses: actions/setup-node@v4
22+
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1
2323
with:
24-
node-version: 23
24+
node-version: 24
2525
cache: pnpm
2626
- name: Install dependencies
2727
run: pnpm install --ignore-scripts
@@ -38,13 +38,13 @@ jobs:
3838
name: Node.js ${{ matrix.node-version }} Quick
3939
steps:
4040
- name: Checkout the repository
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
4242
- name: Install pnpm
43-
uses: pnpm/action-setup@v4
43+
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
4444
with:
4545
version: 10
4646
- name: Install Node.js ${{ matrix.node-version }}
47-
uses: actions/setup-node@v4
47+
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1
4848
with:
4949
node-version: ${{ matrix.node-version }}
5050
cache: pnpm
@@ -63,24 +63,24 @@ jobs:
6363
contents: write
6464
steps:
6565
- name: Checkout the repository
66-
uses: actions/checkout@v4
66+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
6767
with:
6868
persist-credentials: false
6969
- name: Install pnpm
70-
uses: pnpm/action-setup@v4
70+
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
7171
with:
7272
version: 10
7373
- name: Install Node.js
74-
uses: actions/setup-node@v4
74+
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1
7575
with:
76-
node-version: 22
76+
node-version: 24
7777
cache: pnpm
7878
- name: Install dependencies
7979
run: pnpm install --ignore-scripts
8080
- name: Build
8181
run: pnpm build
8282
- name: Deploy
83-
uses: JamesIves/github-pages-deploy-action@v4
83+
uses: JamesIves/github-pages-deploy-action@6c2d9db40f9296374acc17b90404b6e8864128c8 # v4.7.3
8484
with:
8585
folder: test/demo/dist
8686
branch: gh-pages

0 commit comments

Comments
 (0)