Skip to content

Commit 96b12c5

Browse files
Bump the all-github-actions group across 1 directory with 3 updates (#354)
Bumps the all-github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [github/codeql-action](https://github.com/github/codeql-action) and [actions/setup-node](https://github.com/actions/setup-node). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v4...v5) Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v3...v4) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 75f97ff commit 96b12c5

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
lines changed

.github/workflows/codeql-analysis.yml

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

4343
steps:
4444
- name: Checkout repository
45-
uses: actions/checkout@v4
45+
uses: actions/checkout@v5
4646

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

6262
# ℹ️ Command-line programs to run using the OS shell.
6363
# 📚 https://git.io/JvXDl
@@ -71,4 +71,4 @@ jobs:
7171
# make release
7272

7373
- name: Perform CodeQL Analysis
74-
uses: github/codeql-action/analyze@v3
74+
uses: github/codeql-action/analyze@v4

.github/workflows/example-builds-defaultarch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
os: [ubuntu-latest, macOS-latest, windows-latest]
2424

2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727

28-
- uses: actions/setup-node@v4
28+
- uses: actions/setup-node@v6
2929
if: ${{ ! startsWith(github.ref, 'refs/heads/releases') }}
3030
with:
3131
node-version-file: '.tool-versions'

.github/workflows/example-builds-nightly-defaultarch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
- macos-latest # Apple Silicon
2828

2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131

32-
- uses: actions/setup-node@v4
32+
- uses: actions/setup-node@v6
3333
if: ${{ ! startsWith(github.ref, 'refs/heads/releases') }}
3434
with:
3535
node-version-file: '.tool-versions'

.github/workflows/example-builds-nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
julia-arch: x86
3030

3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v5
3333

34-
- uses: actions/setup-node@v4
34+
- uses: actions/setup-node@v6
3535
if: ${{ ! startsWith(github.ref, 'refs/heads/releases') }}
3636
with:
3737
node-version-file: '.tool-versions'

.github/workflows/example-builds.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ jobs:
3636
julia-version: '1'
3737

3838
steps:
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v5
4040

41-
- uses: actions/setup-node@v4
41+
- uses: actions/setup-node@v6
4242
if: ${{ ! startsWith(github.ref, 'refs/heads/releases') }}
4343
with:
4444
node-version-file: '.tool-versions'

.github/workflows/pr_checks.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
fail-fast: false
4040
steps:
4141
### Check out the repo:
42-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
42+
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
4343
with:
4444
persist-credentials: false
4545
### Cleanall:
@@ -53,7 +53,7 @@ jobs:
5353
# Windows:
5454
# Windows does not support asdf, so we have to use `actions/setup-node`
5555
# to install asdf:
56-
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b
56+
- uses: actions/setup-node@dda4788290998366da86b6a4f497909644397bb2
5757
if: runner.os == 'Windows'
5858
with:
5959
node-version-file: '.tool-versions'
@@ -82,7 +82,7 @@ jobs:
8282
runs-on: ubuntu-latest
8383
steps:
8484
### Check out the repo:
85-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
85+
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
8686
with:
8787
persist-credentials: false
8888
### Cleanall:
@@ -96,7 +96,7 @@ jobs:
9696
# Windows:
9797
# Windows does not support asdf, so we have to use `actions/setup-node`
9898
# to install asdf:
99-
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b
99+
- uses: actions/setup-node@dda4788290998366da86b6a4f497909644397bb2
100100
if: runner.os == 'Windows'
101101
with:
102102
node-version-file: '.tool-versions'
@@ -126,7 +126,7 @@ jobs:
126126
runs-on: ubuntu-latest
127127
steps:
128128
### Check out the repo:
129-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
129+
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
130130
with:
131131
persist-credentials: false
132132
### Cleanall:
@@ -140,7 +140,7 @@ jobs:
140140
# Windows:
141141
# Windows does not support asdf, so we have to use `actions/setup-node`
142142
# to install asdf:
143-
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b
143+
- uses: actions/setup-node@dda4788290998366da86b6a4f497909644397bb2
144144
if: runner.os == 'Windows'
145145
with:
146146
node-version-file: '.tool-versions'
@@ -161,7 +161,7 @@ jobs:
161161
runs-on: ubuntu-latest
162162
steps:
163163
### Check out the repo:
164-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
164+
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
165165
with:
166166
persist-credentials: false
167167
### Cleanall:
@@ -199,7 +199,7 @@ jobs:
199199
fail-fast: false
200200
steps:
201201
### Check out the repo:
202-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
202+
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
203203
with:
204204
persist-credentials: false
205205
### Install NodeJS

0 commit comments

Comments
 (0)