File tree 21 files changed +44
-44
lines changed
21 files changed +44
-44
lines changed Original file line number Diff line number Diff line change @@ -20,12 +20,12 @@ jobs:
20
20
21
21
steps :
22
22
- name : Checkout
23
- uses : actions/checkout@v4.1.1
23
+ uses : actions/checkout@v4.2.2
24
24
25
25
- run : corepack enable
26
26
27
27
- name : Setup Node.js
28
- uses : actions/setup-node@v4.1 .0
28
+ uses : actions/setup-node@v4.2 .0
29
29
with :
30
30
node-version-file : ' .node-version'
31
31
cache : ' pnpm'
Original file line number Diff line number Diff line change 12
12
13
13
steps :
14
14
- name : Checkout head
15
- uses : actions/checkout@v4.1.1
15
+ uses : actions/checkout@v4.2.2
16
16
- name : Setup Node.js
17
- uses : actions/setup-node@v4.1 .0
17
+ uses : actions/setup-node@v4.2 .0
18
18
with :
19
19
node-version-file : ' .node-version'
20
20
Original file line number Diff line number Diff line change 18
18
if : ${{ github.event.pull_request.mergeable == null || github.event.pull_request.mergeable == true }}
19
19
steps :
20
20
- name : checkout
21
- uses : actions/checkout@v4.1.1
21
+ uses : actions/checkout@v4.2.2
22
22
with :
23
23
submodules : true
24
24
persist-credentials : false
29
29
30
30
- name : setup node
31
31
id : setup-node
32
- uses : actions/setup-node@v4.1 .0
32
+ uses : actions/setup-node@v4.2 .0
33
33
with :
34
34
node-version-file : ' .node-version'
35
35
cache : pnpm
66
66
if : ${{ github.event.pull_request.mergeable == null || github.event.pull_request.mergeable == true }}
67
67
steps :
68
68
- name : checkout
69
- uses : actions/checkout@v4.1.1
69
+ uses : actions/checkout@v4.2.2
70
70
with :
71
71
submodules : true
72
72
persist-credentials : false
Original file line number Diff line number Diff line change 20
20
runs-on : ubuntu-latest
21
21
steps :
22
22
- name : Checkout
23
- uses : actions/checkout@v4.1.1
23
+ uses : actions/checkout@v4.2.2
24
24
- name : Check version
25
25
run : |
26
26
if [ "$(jq -r '.version' package.json)" != "$(jq -r '.version' packages/misskey-js/package.json)" ]; then
Original file line number Diff line number Diff line change 12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
- name : Checkout
15
- uses : actions/checkout@v4.1.1
15
+ uses : actions/checkout@v4.2.2
16
16
- name : Check
17
17
run : |
18
18
counter=0
Original file line number Diff line number Diff line change 10
10
check_copyright_year :
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v4.1.1
13
+ - uses : actions/checkout@v4.2.2
14
14
- run : |
15
15
if [ "$(grep Copyright COPYING | sed -e 's/.*2014-\([0-9]*\) .*/\1/g')" -ne "$(date +%Y)" ]; then
16
16
echo "Please change copyright year!"
Original file line number Diff line number Diff line change 28
28
wait_time : ${{ steps.get-wait-time.outputs.wait_time }}
29
29
steps :
30
30
- name : Checkout
31
- uses : actions/checkout@v4.1.1
31
+ uses : actions/checkout@v4.2.2
32
32
33
33
- name : Check allowed users
34
34
id : check-allowed-users
Original file line number Diff line number Diff line change 27
27
platform=${{ matrix.platform }}
28
28
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
29
29
- name : Check out the repo
30
- uses : actions/checkout@v4.1.1
30
+ uses : actions/checkout@v4.2.2
31
31
- name : Set up Docker Buildx
32
32
uses : docker/setup-buildx-action@v3
33
33
- name : Log in to Docker Hub
Original file line number Diff line number Diff line change 32
32
platform=${{ matrix.platform }}
33
33
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
34
34
- name : Check out the repo
35
- uses : actions/checkout@v4.1.1
35
+ uses : actions/checkout@v4.2.2
36
36
- name : Set up Docker Buildx
37
37
uses : docker/setup-buildx-action@v3
38
38
- name : Docker meta
Original file line number Diff line number Diff line change 15
15
DOCKER_CONTENT_TRUST : 1
16
16
DOCKLE_VERSION : 0.4.14
17
17
steps :
18
- - uses : actions/checkout@v4.1.1
18
+ - uses : actions/checkout@v4.2.2
19
19
- name : Download and install dockle v${{ env.DOCKLE_VERSION }}
20
20
run : |
21
21
curl -L -o dockle.deb "https://github.com/goodwithtech/dockle/releases/download/v${DOCKLE_VERSION}/dockle_${DOCKLE_VERSION}_Linux-64bit.deb"
Original file line number Diff line number Diff line change @@ -30,14 +30,14 @@ jobs:
30
30
ref : refs/pull/${{ github.event.number }}/merge
31
31
32
32
steps :
33
- - uses : actions/checkout@v4.1.1
33
+ - uses : actions/checkout@v4.2.2
34
34
with :
35
35
ref : ${{ matrix.ref }}
36
36
submodules : true
37
37
- name : Install pnpm
38
38
uses : pnpm/action-setup@v4
39
39
- name : Use Node.js ${{ matrix.node-version }}
40
- uses : actions/setup-node@v4.1 .0
40
+ uses : actions/setup-node@v4.2 .0
41
41
with :
42
42
node-version : ${{ matrix.node-version }}
43
43
cache : ' pnpm'
Original file line number Diff line number Diff line change @@ -36,12 +36,12 @@ jobs:
36
36
pnpm_install :
37
37
runs-on : ubuntu-latest
38
38
steps :
39
- - uses : actions/checkout@v4.1.1
39
+ - uses : actions/checkout@v4.2.2
40
40
with :
41
41
fetch-depth : 0
42
42
submodules : true
43
43
- uses : pnpm/action-setup@v4
44
- - uses : actions/setup-node@v4.1 .0
44
+ - uses : actions/setup-node@v4.2 .0
45
45
with :
46
46
node-version-file : ' .node-version'
47
47
cache : ' pnpm'
@@ -67,12 +67,12 @@ jobs:
67
67
eslint-cache-version : v1
68
68
eslint-cache-path : ${{ github.workspace }}/node_modules/.cache/eslint-${{ matrix.workspace }}
69
69
steps :
70
- - uses : actions/checkout@v4.1.1
70
+ - uses : actions/checkout@v4.2.2
71
71
with :
72
72
fetch-depth : 0
73
73
submodules : true
74
74
- uses : pnpm/action-setup@v4
75
- - uses : actions/setup-node@v4.1 .0
75
+ - uses : actions/setup-node@v4.2 .0
76
76
with :
77
77
node-version-file : ' .node-version'
78
78
cache : ' pnpm'
@@ -97,12 +97,12 @@ jobs:
97
97
- sw
98
98
- misskey-js
99
99
steps :
100
- - uses : actions/checkout@v4.1.1
100
+ - uses : actions/checkout@v4.2.2
101
101
with :
102
102
fetch-depth : 0
103
103
submodules : true
104
104
- uses : pnpm/action-setup@v4
105
- - uses : actions/setup-node@v4.1 .0
105
+ - uses : actions/setup-node@v4.2 .0
106
106
with :
107
107
node-version-file : ' .node-version'
108
108
cache : ' pnpm'
Original file line number Diff line number Diff line change @@ -18,12 +18,12 @@ jobs:
18
18
runs-on : ubuntu-latest
19
19
continue-on-error : true
20
20
steps :
21
- - uses : actions/checkout@v4.1.1
21
+ - uses : actions/checkout@v4.2.2
22
22
with :
23
23
fetch-depth : 0
24
24
submodules : true
25
25
- uses : pnpm/action-setup@v4
26
- - uses : actions/setup-node@v4.1 .0
26
+ - uses : actions/setup-node@v4.2 .0
27
27
with :
28
28
node-version-file : ' .node-version'
29
29
cache : ' pnpm'
Original file line number Diff line number Diff line change @@ -23,13 +23,13 @@ jobs:
23
23
node-version : [22.11.0]
24
24
25
25
steps :
26
- - uses : actions/checkout@v4.1.1
26
+ - uses : actions/checkout@v4.2.2
27
27
with :
28
28
submodules : true
29
29
- name : Install pnpm
30
30
uses : pnpm/action-setup@v4
31
31
- name : Use Node.js ${{ matrix.node-version }}
32
- uses : actions/setup-node@v4.1 .0
32
+ uses : actions/setup-node@v4.2 .0
33
33
with :
34
34
node-version : ${{ matrix.node-version }}
35
35
cache : ' pnpm'
Original file line number Diff line number Diff line change @@ -26,12 +26,12 @@ jobs:
26
26
NODE_OPTIONS : " --max_old_space_size=7168"
27
27
28
28
steps :
29
- - uses : actions/checkout@v4.1.1
29
+ - uses : actions/checkout@v4.2.2
30
30
if : github.event_name != 'pull_request_target'
31
31
with :
32
32
fetch-depth : 0
33
33
submodules : true
34
- - uses : actions/checkout@v4.1.1
34
+ - uses : actions/checkout@v4.2.2
35
35
if : github.event_name == 'pull_request_target'
36
36
with :
37
37
fetch-depth : 0
46
46
- name : Install pnpm
47
47
uses : pnpm/action-setup@v4
48
48
- name : Use Node.js 20.x
49
- uses : actions/setup-node@v4.1 .0
49
+ uses : actions/setup-node@v4.2 .0
50
50
with :
51
51
node-version-file : ' .node-version'
52
52
cache : ' pnpm'
Original file line number Diff line number Diff line change 45
45
- 56312:6379
46
46
47
47
steps :
48
- - uses : actions/checkout@v4.1.1
48
+ - uses : actions/checkout@v4.2.2
49
49
with :
50
50
submodules : true
51
51
- name : Install pnpm
66
66
fi
67
67
done
68
68
- name : Use Node.js ${{ matrix.node-version }}
69
- uses : actions/setup-node@v4.1 .0
69
+ uses : actions/setup-node@v4.2 .0
70
70
with :
71
71
node-version : ${{ matrix.node-version }}
72
72
cache : ' pnpm'
@@ -108,13 +108,13 @@ jobs:
108
108
- 56312:6379
109
109
110
110
steps :
111
- - uses : actions/checkout@v4.1.1
111
+ - uses : actions/checkout@v4.2.2
112
112
with :
113
113
submodules : true
114
114
- name : Install pnpm
115
115
uses : pnpm/action-setup@v4
116
116
- name : Use Node.js ${{ matrix.node-version }}
117
- uses : actions/setup-node@v4.1 .0
117
+ uses : actions/setup-node@v4.2 .0
118
118
with :
119
119
node-version : ${{ matrix.node-version }}
120
120
cache : ' pnpm'
Original file line number Diff line number Diff line change 47
47
fi
48
48
done
49
49
- name : Use Node.js ${{ matrix.node-version }}
50
- uses : actions/setup-node@v4.1 .0
50
+ uses : actions/setup-node@v4.2 .0
51
51
with :
52
52
node-version : ${{ matrix.node-version }}
53
53
cache : ' pnpm'
Original file line number Diff line number Diff line change @@ -36,13 +36,13 @@ jobs:
36
36
node-version : [22.11.0]
37
37
38
38
steps :
39
- - uses : actions/checkout@v4.1.1
39
+ - uses : actions/checkout@v4.2.2
40
40
with :
41
41
submodules : true
42
42
- name : Install pnpm
43
43
uses : pnpm/action-setup@v4
44
44
- name : Use Node.js ${{ matrix.node-version }}
45
- uses : actions/setup-node@v4.1 .0
45
+ uses : actions/setup-node@v4.2 .0
46
46
with :
47
47
node-version : ${{ matrix.node-version }}
48
48
cache : ' pnpm'
86
86
- 56312:6379
87
87
88
88
steps :
89
- - uses : actions/checkout@v4.1.1
89
+ - uses : actions/checkout@v4.2.2
90
90
with :
91
91
submodules : true
92
92
# https://github.com/cypress-io/cypress-docker-images/issues/150
98
98
- name : Install pnpm
99
99
uses : pnpm/action-setup@v4
100
100
- name : Use Node.js ${{ matrix.node-version }}
101
- uses : actions/setup-node@v4.1 .0
101
+ uses : actions/setup-node@v4.2 .0
102
102
with :
103
103
node-version : ${{ matrix.node-version }}
104
104
cache : ' pnpm'
Original file line number Diff line number Diff line change @@ -31,12 +31,12 @@ jobs:
31
31
32
32
steps :
33
33
- name : Checkout
34
- uses : actions/checkout@v4.1.1
34
+ uses : actions/checkout@v4.2.2
35
35
36
36
- run : corepack enable
37
37
38
38
- name : Setup Node.js ${{ matrix.node-version }}
39
- uses : actions/setup-node@v4.1 .0
39
+ uses : actions/setup-node@v4.2 .0
40
40
with :
41
41
node-version : ${{ matrix.node-version }}
42
42
cache : ' pnpm'
Original file line number Diff line number Diff line change @@ -21,13 +21,13 @@ jobs:
21
21
node-version : [22.11.0]
22
22
23
23
steps :
24
- - uses : actions/checkout@v4.1.1
24
+ - uses : actions/checkout@v4.2.2
25
25
with :
26
26
submodules : true
27
27
- name : Install pnpm
28
28
uses : pnpm/action-setup@v4
29
29
- name : Use Node.js ${{ matrix.node-version }}
30
- uses : actions/setup-node@v4.1 .0
30
+ uses : actions/setup-node@v4.2 .0
31
31
with :
32
32
node-version : ${{ matrix.node-version }}
33
33
cache : ' pnpm'
Original file line number Diff line number Diff line change @@ -25,13 +25,13 @@ jobs:
25
25
node-version : [22.11.0]
26
26
27
27
steps :
28
- - uses : actions/checkout@v4.1.1
28
+ - uses : actions/checkout@v4.2.2
29
29
with :
30
30
submodules : true
31
31
- name : Install pnpm
32
32
uses : pnpm/action-setup@v4
33
33
- name : Use Node.js ${{ matrix.node-version }}
34
- uses : actions/setup-node@v4.1 .0
34
+ uses : actions/setup-node@v4.2 .0
35
35
with :
36
36
node-version : ${{ matrix.node-version }}
37
37
cache : ' pnpm'
You can’t perform that action at this time.
0 commit comments