Skip to content

Commit 2c59cdc

Browse files
Bump the github-actions group with 3 updates
Bumps the github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [github/codeql-action](https://github.com/github/codeql-action) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/checkout` from 5.0.1 to 6.0.1 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v5.0.1...v6.0.1) Updates `github/codeql-action` from 4.31.6 to 4.31.9 - [Release notes](https://github.com/github/codeql-action/releases) - [Commits](github/codeql-action@v4.31.6...v4.31.9) Updates `actions/upload-artifact` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@330a01c...b7c566a) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: 4.31.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 23994d7 commit 2c59cdc

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runner: [ ubuntu-latest ]
1717
runs-on: ${{ matrix.runner }}
1818
steps:
19-
- uses: actions/checkout@v6
19+
- uses: actions/checkout@v6.0.1
2020
- name: Build Ubuntu
2121
run: |
2222
./configure --with-fastfloat --with-threaded
@@ -29,7 +29,7 @@ jobs:
2929
runner: [ macos-14, macos-latest ]
3030
runs-on: ${{ matrix.runner }}
3131
steps:
32-
- uses: actions/checkout@v6
32+
- uses: actions/checkout@v6.0.1
3333
- name: Build macOS
3434
run: |
3535
./configure --with-fastfloat --with-threaded
@@ -50,7 +50,7 @@ jobs:
5050
runs-on: ${{ matrix.runner }}
5151
steps:
5252
- name: Checkout Repository
53-
uses: actions/checkout@v6
53+
uses: actions/checkout@v6.0.1
5454

5555
- name: Setup MSVC Build Environment
5656
uses: ilammy/msvc-dev-cmd@v1
@@ -66,7 +66,7 @@ jobs:
6666
Ubuntu-meson:
6767
runs-on: ubuntu-latest
6868
steps:
69-
- uses: actions/checkout@v6
69+
- uses: actions/checkout@v6.0.1
7070

7171
- name: Install packages
7272
run: |
@@ -84,7 +84,7 @@ jobs:
8484
runs-on: windows-latest
8585

8686
steps:
87-
- uses: actions/checkout@v6
87+
- uses: actions/checkout@v6.0.1
8888

8989
- name: Install packages
9090
run: |

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ jobs:
3636

3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@v6
39+
uses: actions/checkout@v6.0.1
4040
with:
4141
# We must fetch at least the immediate parents so that if this is
4242
# a pull request then we can checkout the head.
4343
fetch-depth: 2
4444

4545
# Initializes the CodeQL tools for scanning.
4646
- name: Initialize CodeQL
47-
uses: github/codeql-action/init@v4.31.6
47+
uses: github/codeql-action/init@v4.31.9
4848
with:
4949
languages: ${{ matrix.language }}
5050
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -55,7 +55,7 @@ jobs:
5555
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5656
# If this step fails, then you should remove it and run the build manually (see below)
5757
- name: Autobuild
58-
uses: github/codeql-action/autobuild@v4.31.6
58+
uses: github/codeql-action/autobuild@v4.31.9
5959

6060
# ℹ️ Command-line programs to run using the OS shell.
6161
# 📚 https://git.io/JvXDl
@@ -69,4 +69,4 @@ jobs:
6969
# make release
7070

7171
- name: Perform CodeQL Analysis
72-
uses: github/codeql-action/analyze@v4.31.6
72+
uses: github/codeql-action/analyze@v4.31.9

.github/workflows/scorecard.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: "Checkout code"
28-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4.1.1
28+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4.1.1
2929
with:
3030
persist-credentials: false
3131

@@ -42,14 +42,14 @@ jobs:
4242
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
4343
# format to the repository Actions tab.
4444
- name: "Upload artifact"
45-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
45+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
4646
with:
4747
name: SARIF file
4848
path: results.sarif
4949
retention-days: 5
5050

5151
# Upload the results to GitHub's code scanning dashboard.
5252
- name: "Upload to code-scanning"
53-
uses: github/codeql-action/upload-sarif@f0ac9bfbe331b3cc7be1482df79cca2865cb79b6 # v2.24.0
53+
uses: github/codeql-action/upload-sarif@f67ec12472e1b361f5e1e2085f5e6f85a57e3cd6 # v2.24.0
5454
with:
5555
sarif_file: results.sarif

0 commit comments

Comments
 (0)