Commit 58a44e7 1 parent cc467fb commit 58a44e7 Copy full SHA for 58a44e7
File tree 5 files changed +15
-9
lines changed
5 files changed +15
-9
lines changed Original file line number Diff line number Diff line change 7
7
jobs :
8
8
update-git-tag : # Reason: <https://github.com/actions/toolkit/blob/master/docs/action-versioning.md#recommendations>
9
9
name : Update latest major git tag
10
- runs-on : ubuntu-20.04
10
+ runs-on : ubuntu-latest
11
11
steps :
12
12
- uses : actions/checkout@v4
13
13
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ concurrency:
15
15
jobs :
16
16
gitleaks :
17
17
name : Gitleaks
18
- runs-on : ubuntu-20.04
18
+ runs-on : ubuntu-latest
19
19
steps :
20
20
- uses : actions/checkout@v4
21
21
with : {fetch-depth: 0}
@@ -25,13 +25,13 @@ jobs:
25
25
26
26
eslint :
27
27
name : Run eslint
28
- runs-on : ubuntu-20.04
28
+ runs-on : ubuntu-latest
29
29
env : {FORCE_COLOR: 'true'}
30
30
steps :
31
31
- uses : actions/checkout@v4
32
32
33
33
- uses : actions/setup-node@v4
34
- with : {node-version: '16 '}
34
+ with : {node-version: '20 '}
35
35
36
36
- uses : actions/cache@v3
37
37
id : yarn-cache
@@ -47,15 +47,15 @@ jobs:
47
47
48
48
dist-built :
49
49
name : Check distributive built state
50
- runs-on : ubuntu-20.04
50
+ runs-on : ubuntu-latest
51
51
outputs :
52
52
dist-changed : ${{ steps.state.outputs.changed }}
53
53
env : {FORCE_COLOR: 'true'}
54
54
steps :
55
55
- uses : actions/checkout@v4
56
56
57
57
- uses : actions/setup-node@v4
58
- with : {node-version: '16 '}
58
+ with : {node-version: '20 '}
59
59
60
60
- uses : actions/cache@v3
61
61
id : yarn-cache
79
79
name : Commit and push fresh distributive
80
80
needs : [dist-built]
81
81
if : ${{ needs.dist-built.outputs.dist-changed == 'true' }}
82
- runs-on : ubuntu-20.04
82
+ runs-on : ubuntu-latest
83
83
permissions :
84
84
contents : write
85
85
pull-requests : write
Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file.
4
4
5
5
The format is based on [ Keep a Changelog] [ keepachangelog ] and this project adheres to [ Semantic Versioning] [ semver ] .
6
6
7
+ ## v1.2.0
8
+
9
+ ### Changed
10
+
11
+ - Version of node runtime for action from node16 to node20
12
+
7
13
## v1.1.0
8
14
9
15
### Removed
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ inputs:
12
12
default : ${{ github.token }}
13
13
14
14
runs :
15
- using : node16
15
+ using : node20
16
16
main : dist/index.js
17
17
18
18
branding :
Original file line number Diff line number Diff line change 5
5
6
6
services :
7
7
node :
8
- image : node:16 -alpine # Image page: <https://hub.docker.com/_/node>
8
+ image : node:20 -alpine # Image page: <https://hub.docker.com/_/node>
9
9
environment :
10
10
PS1 : ' \[\033[1;32m\]\[\033[1;36m\][\u@\h] \[\033[1;34m\]\w\[\033[0;35m\] \[\033[1;36m\]# \[\033[0m\]'
11
11
PATH : " /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/app/node_modules/.bin"
You can’t perform that action at this time.
0 commit comments