Skip to content

Commit bb1ab3b

Browse files
build(deps): bump the github-actions group with 2 updates (#1120)
Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/checkout` from 6.0.0 to 6.0.1 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v6...v6.0.1) Updates `github/codeql-action` from 4.31.6 to 4.31.9 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@fe4161a...5d4e8d1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-patch 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 ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 986a51e commit bb1ab3b

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/codeql-analysis.yml

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

4141
steps:
4242
- name: Checkout repository
43-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
43+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4444

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

6363
# ℹ️ Command-line programs to run using the OS shell.
6464
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -71,4 +71,4 @@ jobs:
7171
# ./location_of_script_within_repo/buildscript.sh
7272

7373
- name: Perform CodeQL Analysis
74-
uses: github/codeql-action/analyze@fe4161a26a8629af62121b670040955b330f9af2 # v3.29.5
74+
uses: github/codeql-action/analyze@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v3.29.5

.github/workflows/go.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
go-version: ${{ matrix.go-version }}
2525

2626
- name: Checkout code
27-
uses: actions/checkout@v6.0.0
27+
uses: actions/checkout@v6.0.1
2828

2929
- name: Vet
3030
run: go vet ./...
@@ -63,7 +63,7 @@ jobs:
6363
go-version: 1.25.x
6464

6565
- name: Checkout code
66-
uses: actions/checkout@v6.0.0
66+
uses: actions/checkout@v6.0.1
6767

6868
- name: Generate
6969
working-directory: ${{ matrix.pkg }}/_generate
@@ -85,7 +85,7 @@ jobs:
8585
go-version: 1.25.x
8686

8787
- name: Checkout code
88-
uses: actions/checkout@v6.0.0
88+
uses: actions/checkout@v6.0.1
8989

9090
- name: fmt
9191
run: diff <(gofmt -d .) <(printf "")
@@ -128,7 +128,7 @@ jobs:
128128
go-version: 1.25.x
129129

130130
- name: Checkout code
131-
uses: actions/checkout@v6.0.0
131+
uses: actions/checkout@v6.0.1
132132

133133
- name: S2/FuzzDictBlocks/${{ matrix.tags }}
134134
run: go test -tags=${{ matrix.tags }} -run=none -fuzz=FuzzDictBlocks -fuzztime=100000x -test.fuzzminimizetime=10ms ./s2/.
@@ -154,7 +154,7 @@ jobs:
154154
go-version: 1.25.x
155155

156156
- name: Checkout code
157-
uses: actions/checkout@v6.0.0
157+
uses: actions/checkout@v6.0.1
158158

159159
- name: zstd/FuzzDecodeAll/${{ matrix.tags }}
160160
run: go test -tags=${{ matrix.tags }} -run=none -fuzz=FuzzDecodeAll -fuzztime=500000x -test.fuzzminimizetime=10ms ./zstd/.
@@ -184,7 +184,7 @@ jobs:
184184
with:
185185
go-version: 1.25.x
186186
- name: Checkout code
187-
uses: actions/checkout@v6.0.0
187+
uses: actions/checkout@v6.0.1
188188

189189
- name: flate/FuzzEncoding/${{ matrix.tags }}
190190
run: go test -tags=${{ matrix.tags }} -run=none -fuzz=FuzzEncoding -fuzztime=100000x -test.fuzzminimizetime=10ms ./flate/.

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
-
1616
name: Checkout
17-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
17+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
1818
with:
1919
fetch-depth: 0
2020
-

0 commit comments

Comments
 (0)