File tree Expand file tree Collapse file tree 4 files changed +8
-36
lines changed Expand file tree Collapse file tree 4 files changed +8
-36
lines changed Original file line number Diff line number Diff line change 6
6
gitleaks :
7
7
runs-on : ubuntu-latest
8
8
steps :
9
- - uses : actions/checkout@v3
9
+ - uses : actions/checkout@v4
10
10
- name : wget
11
11
uses : wei/wget@v1
12
12
with :
Original file line number Diff line number Diff line change 10
10
steps :
11
11
- name : help wanted
12
12
if : github.event.label.name == 'help wanted'
13
- uses : actions-cool/issues-helper@v1.2
13
+ uses : actions-cool/issues-helper@v3
14
14
with :
15
15
actions : ' create-comment'
16
16
issue-number : ${{ github.event.issue.number }}
23
23
24
24
- name : 🤔 Need Reproduce
25
25
if : github.event.label.name == '🤔 Need Reproduce'
26
- uses : actions-cool/issues-helper@v1.2
26
+ uses : actions-cool/issues-helper@v3
27
27
with :
28
28
actions : ' create-comment'
29
29
issue-number : ${{ github.event.issue.number }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 9
9
strategy :
10
10
matrix :
11
11
mode : ['normal', 'strict']
12
- node-version : [14 .x, 16 .x]
12
+ node-version : [18 .x, 20 .x]
13
13
14
14
steps :
15
- - uses : actions/checkout@v3
15
+ - uses : actions/checkout@v4
16
16
17
17
- name : Install pnpm
18
- uses : pnpm/action-setup@v2.2.4
18
+ uses : pnpm/action-setup@v4
19
19
20
20
- name : Get pnpm store directory
21
21
id : pnpm-cache
22
22
run : |
23
23
echo "pnpm_cache_dir=$(pnpm store path)" >> "$GITHUB_OUTPUT"
24
24
25
25
- name : Setup pnpm cache
26
- uses : actions/cache@v3
26
+ uses : actions/cache@v4
27
27
with :
28
28
path : ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
29
29
key : ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
30
30
restore-keys : |
31
31
${{ runner.os }}-pnpm-store-
32
32
33
33
- name : Use Node.js ${{ matrix.node-version }}
34
- uses : actions/setup-node@v3
34
+ uses : actions/setup-node@v4
35
35
with :
36
36
node-version : ${{ matrix.node-version }}
37
37
You can’t perform that action at this time.
0 commit comments