Skip to content

Commit ac8c854

Browse files
committed
chore: update actions
1 parent 2aad819 commit ac8c854

File tree

5 files changed

+23
-23
lines changed

5 files changed

+23
-23
lines changed

.github/actions/install-dependencies/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ runs:
1313
echo "PNPM_STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
1414
1515
- name: Setup pnpm cache
16-
uses: actions/cache@v4
16+
uses: actions/cache@638ed79f9dc94c1de1baef91bcab5edaa19451f4 # v4.2.4
1717
with:
1818
path: ${{ env.PNPM_STORE_PATH }}
1919
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}

.github/actions/install-tools/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ runs:
44
using: composite
55
steps:
66
- name: Install Node
7-
uses: actions/setup-node@v4
7+
uses: actions/setup-node@d7a11313b581b306c961b506cfc8971208bb03f6 # v4.4.0
88
with:
99
node-version: 24
1010

@@ -21,7 +21,7 @@ runs:
2121
x86_64-pc-windows-msvc
2222
2323
- name: Install pnpm
24-
uses: pnpm/action-setup@v4
24+
uses: pnpm/action-setup@f2b2b233b538f500472c7274c7012f57857d8ce0 # v4.1.0
2525
with:
2626
version: 10
2727
run_install: false

.github/workflows/docs.yml

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

1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
1616
with:
1717
fetch-depth: 0
1818

@@ -26,7 +26,7 @@ jobs:
2626
run: pnpm run docs:build
2727

2828
- name: Deploy to Netlify
29-
uses: nwtgck/actions-netlify@v3
29+
uses: nwtgck/actions-netlify@f242d4c9f946f94d2ed8413888eaf35e1f7e848d # v3.0.0
3030
with:
3131
publish-dir: './dist'
3232
production-branch: main

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
3333
with:
3434
fetch-depth: 0
3535

@@ -38,7 +38,7 @@ jobs:
3838

3939
- name: Set up MSVC Environment
4040
if: runner.os == 'Windows'
41-
uses: ilammy/msvc-dev-cmd@v1
41+
uses: ilammy/msvc-dev-cmd@460a772e4cf7358f9f2f23773240813e40e7a894 # v1.13.0
4242
with:
4343
arch: ${{ matrix.arch }}
4444

@@ -118,7 +118,7 @@ jobs:
118118
shell: cmd
119119

120120
- name: Upload Binaries
121-
uses: actions/upload-artifact@v4
121+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
122122
with:
123123
name: todoctor-${{ matrix.platform }}-${{ matrix.arch }}
124124
path: '**/*'
@@ -130,7 +130,7 @@ jobs:
130130

131131
steps:
132132
- name: Checkout
133-
uses: actions/checkout@v4
133+
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
134134
with:
135135
fetch-depth: 0
136136

@@ -144,31 +144,31 @@ jobs:
144144
run: pnpm run build:preview
145145

146146
- name: Download Binaries for Linux x64
147-
uses: actions/download-artifact@v4
147+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
148148
with:
149149
name: todoctor-ubuntu-latest-x64
150150
path: .
151151

152152
- name: Download Binaries for Linux arm64
153-
uses: actions/download-artifact@v4
153+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
154154
with:
155155
name: todoctor-ubuntu-latest-arm64
156156
path: .
157157

158158
- name: Download Binaries for macOS x64
159-
uses: actions/download-artifact@v4
159+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
160160
with:
161161
name: todoctor-macos-latest-x64
162162
path: .
163163

164164
- name: Download Binaries for macOS arm64
165-
uses: actions/download-artifact@v4
165+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
166166
with:
167167
name: todoctor-macos-latest-arm64
168168
path: .
169169

170170
- name: Download Binaries for Windows x64
171-
uses: actions/download-artifact@v4
171+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
172172
with:
173173
name: todoctor-windows-latest-x64
174174
path: .

.github/workflows/test.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
1717

1818
- name: Install Tools
1919
uses: ./.github/actions/install-tools
@@ -30,7 +30,7 @@ jobs:
3030

3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
3434

3535
- name: Install Tools
3636
uses: ./.github/actions/install-tools
@@ -47,7 +47,7 @@ jobs:
4747

4848
steps:
4949
- name: Checkout
50-
uses: actions/checkout@v4
50+
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
5151

5252
- name: Install Tools
5353
uses: ./.github/actions/install-tools
@@ -64,7 +64,7 @@ jobs:
6464

6565
steps:
6666
- name: Checkout
67-
uses: actions/checkout@v4
67+
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
6868

6969
- name: Install Tools
7070
uses: ./.github/actions/install-tools
@@ -81,7 +81,7 @@ jobs:
8181

8282
steps:
8383
- name: Checkout
84-
uses: actions/checkout@v4
84+
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
8585

8686
- name: Install Tools
8787
uses: ./.github/actions/install-tools
@@ -98,7 +98,7 @@ jobs:
9898

9999
steps:
100100
- name: Checkout
101-
uses: actions/checkout@v4
101+
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
102102

103103
- name: Install Tools
104104
uses: ./.github/actions/install-tools
@@ -115,7 +115,7 @@ jobs:
115115

116116
steps:
117117
- name: Checkout
118-
uses: actions/checkout@v4
118+
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
119119

120120
- name: Install Tools
121121
uses: ./.github/actions/install-tools
@@ -132,7 +132,7 @@ jobs:
132132

133133
steps:
134134
- name: Checkout
135-
uses: actions/checkout@v4
135+
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
136136

137137
- name: Install Tools
138138
uses: ./.github/actions/install-tools
@@ -144,6 +144,6 @@ jobs:
144144
run: pnpm test:unit
145145

146146
- name: Upload coverage reports to Codecov
147-
uses: codecov/codecov-action@v4.0.1
147+
uses: codecov/codecov-action@3cb13a12348ef4ffcf9783ac0f74954f92113e33 # v5.5.0
148148
with:
149149
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)