Skip to content

Commit fea0083

Browse files
committed
Update Github Action version
1 parent a837739 commit fea0083

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

.github/workflows/build-test.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,15 @@ jobs:
2626
# Node.js 12 has been deprecated since Oct 2020
2727
# Node.js 14 has been deprecated since Oct 2021
2828
# 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]
3031

3132
steps:
3233
- name: Checkout repository
33-
uses: actions/checkout@v3
34+
uses: actions/checkout@v4
3435

3536
- name: Install Node.js
36-
uses: actions/setup-node@v3
37+
uses: actions/setup-node@v4
3738
with:
3839
node-version: ${{ matrix.nodejs_version }}
3940
cache: 'yarn'

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ jobs:
4444

4545
steps:
4646
- name: Checkout repository
47-
uses: actions/checkout@v3
47+
uses: actions/checkout@v4
4848

4949
# Initializes the CodeQL tools for scanning.
5050
- name: Initialize CodeQL
51-
uses: github/codeql-action/init@v2
51+
uses: github/codeql-action/init@v3
5252
with:
5353
languages: ${{ matrix.language }}
5454
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -59,7 +59,7 @@ jobs:
5959
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
6060
# If this step fails, then you should remove it and run the build manually (see below)
6161
- name: Autobuild
62-
uses: github/codeql-action/autobuild@v2
62+
uses: github/codeql-action/autobuild@v3
6363

6464
# ℹ️ Command-line programs to run using the OS shell.
6565
# 📚 https://git.io/JvXDl
@@ -73,4 +73,4 @@ jobs:
7373
# make release
7474

7575
- name: Perform CodeQL Analysis
76-
uses: github/codeql-action/analyze@v2
76+
uses: github/codeql-action/analyze@v3

.github/workflows/markets-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout repository
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626

2727
- name: Install Node.js
28-
uses: actions/setup-node@v3
28+
uses: actions/setup-node@v4
2929
with:
30-
node-version: 16.x
30+
node-version: 20.x
3131

3232
- name: Build
3333
run: |

0 commit comments

Comments
 (0)