File tree 3 files changed +11
-10
lines changed 3 files changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -26,14 +26,15 @@ jobs:
26
26
# Node.js 12 has been deprecated since Oct 2020
27
27
# Node.js 14 has been deprecated since Oct 2021
28
28
# Node.js 15 has been deprecated since Apr 2021
29
- nodejs_version : [16, 18]
29
+ # Node.js 16 has been deprecated since Oct 2023
30
+ nodejs_version : [20, 22]
30
31
31
32
steps :
32
33
- name : Checkout repository
33
- uses : actions/checkout@v3
34
+ uses : actions/checkout@v4
34
35
35
36
- name : Install Node.js
36
- uses : actions/setup-node@v3
37
+ uses : actions/setup-node@v4
37
38
with :
38
39
node-version : ${{ matrix.nodejs_version }}
39
40
cache : ' yarn'
Original file line number Diff line number Diff line change @@ -44,11 +44,11 @@ jobs:
44
44
45
45
steps :
46
46
- name : Checkout repository
47
- uses : actions/checkout@v3
47
+ uses : actions/checkout@v4
48
48
49
49
# Initializes the CodeQL tools for scanning.
50
50
- name : Initialize CodeQL
51
- uses : github/codeql-action/init@v2
51
+ uses : github/codeql-action/init@v3
52
52
with :
53
53
languages : ${{ matrix.language }}
54
54
# If you wish to specify custom queries, you can do so here or in a config file.
59
59
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
60
60
# If this step fails, then you should remove it and run the build manually (see below)
61
61
- name : Autobuild
62
- uses : github/codeql-action/autobuild@v2
62
+ uses : github/codeql-action/autobuild@v3
63
63
64
64
# ℹ️ Command-line programs to run using the OS shell.
65
65
# 📚 https://git.io/JvXDl
73
73
# make release
74
74
75
75
- name : Perform CodeQL Analysis
76
- uses : github/codeql-action/analyze@v2
76
+ uses : github/codeql-action/analyze@v3
Original file line number Diff line number Diff line change @@ -22,12 +22,12 @@ jobs:
22
22
runs-on : ubuntu-latest
23
23
steps :
24
24
- name : Checkout repository
25
- uses : actions/checkout@v3
25
+ uses : actions/checkout@v4
26
26
27
27
- name : Install Node.js
28
- uses : actions/setup-node@v3
28
+ uses : actions/setup-node@v4
29
29
with :
30
- node-version : 16 .x
30
+ node-version : 20 .x
31
31
32
32
- name : Build
33
33
run : |
You can’t perform that action at this time.
0 commit comments