Skip to content

Commit 6ffb8ad

Browse files
authored
chore: bump workflows (#612)
1 parent eba26a7 commit 6ffb8ad

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/codeql-analysis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v2
38+
uses: actions/checkout@v4
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@v1
42+
uses: github/codeql-action/init@v3
4343
with:
4444
languages: ${{ matrix.language }}
4545
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -50,7 +50,7 @@ jobs:
5050
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5151
# If this step fails, then you should remove it and run the build manually (see below)
5252
- name: Autobuild
53-
uses: github/codeql-action/autobuild@v1
53+
uses: github/codeql-action/autobuild@v3
5454

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

6666
- name: Perform CodeQL Analysis
67-
uses: github/codeql-action/analyze@v1
67+
uses: github/codeql-action/analyze@v3

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-18.04
1515
steps:
1616
- name: ${{ github.actor }} permission check to do a release
17-
uses: octokit/request-action@v2.0.26
17+
uses: octokit/request-action@v2.x
1818
with:
1919
route: GET /repos/:repository/collaborators/${{ github.actor }}
2020
repository: ${{ github.repository }}
@@ -31,10 +31,10 @@ jobs:
3131

3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@v2
34+
uses: actions/checkout@v4
3535

3636
- name: Setup Node.js
37-
uses: actions/setup-node@v1
37+
uses: actions/setup-node@v4
3838
with:
3939
node-version: ${{ env.stable-node-version}}
4040
cache: npm

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
os: [macos-latest, ubuntu-latest, windows-latest]
99
steps:
1010
- name: Check out Git repository
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212
- name: Install Node.js, NPM
13-
uses: actions/setup-node@v3
13+
uses: actions/setup-node@v4
1414
with:
1515
node-version: 18
1616
cache: npm

0 commit comments

Comments
 (0)