Skip to content

Commit c6186f7

Browse files
committed
Bump GHA versions
1 parent 1be91ac commit c6186f7

File tree

3 files changed

+17
-16
lines changed

3 files changed

+17
-16
lines changed

.github/workflows/ci.yaml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ jobs:
1313
name: Build
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
17+
1718
- name: Set up Node.js
18-
uses: actions/setup-node@v3
19+
uses: actions/setup-node@v4
1920
with:
2021
node-version: ${{ env.node_version }}
2122
cache: yarn
@@ -33,10 +34,10 @@ jobs:
3334
name: Audit
3435
runs-on: ubuntu-latest
3536
steps:
36-
- uses: actions/checkout@v3
37+
- uses: actions/checkout@v4
3738

3839
- name: Set up Node.js
39-
uses: actions/setup-node@v3
40+
uses: actions/setup-node@v4
4041
with:
4142
node-version: ${{ env.node_version }}
4243
cache: yarn
@@ -48,10 +49,10 @@ jobs:
4849
name: Lint
4950
runs-on: ubuntu-latest
5051
steps:
51-
- uses: actions/checkout@v3
52+
- uses: actions/checkout@v4
5253

5354
- name: Set up Node.js
54-
uses: actions/setup-node@v3
55+
uses: actions/setup-node@v4
5556
with:
5657
node-version: ${{ env.node_version }}
5758
cache: yarn
@@ -66,10 +67,10 @@ jobs:
6667
name: Test
6768
runs-on: ubuntu-latest
6869
steps:
69-
- uses: actions/checkout@v3
70+
- uses: actions/checkout@v4
7071

7172
- name: Set up Node.js
72-
uses: actions/setup-node@v3
73+
uses: actions/setup-node@v4
7374
with:
7475
node-version: ${{ env.node_version }}
7576

.github/workflows/codeql-analysis.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,35 +38,35 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v4
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v2
45+
uses: github/codeql-action/init@v3
4646
with:
4747
languages: ${{ matrix.language }}
4848
# If you wish to specify custom queries, you can do so here or in a config file.
4949
# By default, queries listed here will override any specified in a config file.
5050
# Prefix the list here with "+" to use these queries and those in the config file.
51-
51+
5252
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
5353
# queries: security-extended,security-and-quality
5454

55-
55+
5656
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5757
# If this step fails, then you should remove it and run the build manually (see below)
5858
- name: Autobuild
59-
uses: github/codeql-action/autobuild@v2
59+
uses: github/codeql-action/autobuild@v3
6060

6161
# ℹ️ Command-line programs to run using the OS shell.
6262
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
6363

64-
# If the Autobuild fails above, remove it and uncomment the following three lines.
64+
# If the Autobuild fails above, remove it and uncomment the following three lines.
6565
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
6666

6767
# - run: |
6868
# echo "Run, Build Application using script"
6969
# ./location_of_script_within_repo/buildscript.sh
7070

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

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
# name: Test
1111
# runs-on: ubuntu-latest
1212
# steps:
13-
# - uses: actions/checkout@v3
13+
# - uses: actions/checkout@v4
1414
# - name: CodeDeploy
1515
# uses: ./
1616
# with:

0 commit comments

Comments
 (0)