Skip to content

Commit 4a3c15e

Browse files
committed
GitHub Actions versions have been updated across all workflows
1 parent 041ef5b commit 4a3c15e

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

.github/workflows/netlicensing-js-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131

3232
- name: Setup Node.js ${{ matrix.node-version }}
33-
uses: actions/setup-node@v4
33+
uses: actions/setup-node@v5
3434
with:
3535
node-version: ${{ matrix.node-version }}
3636
cache: 'npm' # ⚡️ Speeds up `npm ci` by caching ~/.npm across runs

.github/workflows/netlicensing-js-codeql-analysis.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v5
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.
@@ -53,8 +53,7 @@ jobs:
5353
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5454
# If this step fails, then you should remove it and run the build manually (see below)
5555
- name: Autobuild
56-
uses: github/codeql-action/autobuild@v2
57-
56+
uses: github/codeql-action/autobuild@v3
5857
# ℹ️ Command-line programs to run using the OS shell.
5958
# 📚 https://git.io/JvXDl
6059

@@ -67,4 +66,4 @@ jobs:
6766
# make release
6867

6968
- name: Perform CodeQL Analysis
70-
uses: github/codeql-action/analyze@v2
69+
uses: github/codeql-action/analyze@v3

.github/workflows/netlicensing-js-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ jobs:
2323
environment: npm-publish
2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727
with:
2828
token: ${{ secrets.GITHUB_TOKEN }}
2929
fetch-depth: 0
3030

3131
- name: Setup Node.js
32-
uses: actions/setup-node@v4
32+
uses: actions/setup-node@v5
3333
with:
3434
node-version: 20
3535
cache: npm

0 commit comments

Comments
 (0)