Skip to content

Commit fba1f10

Browse files
chore: bump the github-actions group across 1 directory with 3 updates
Bumps the github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 3b3a801 commit fba1f10

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
steps:
3535
- name: Checkout repository
36-
uses: actions/checkout@v5
36+
uses: actions/checkout@v6
3737

3838
# Retrieve build locations with `go env`
3939
# <https://markphelps.me/posts/speed-up-your-go-builds-with-actions-cache/>
@@ -42,7 +42,7 @@ jobs:
4242
echo "go-build=$(go env GOCACHE)" >> $GITHUB_OUTPUT
4343
echo "go-mod=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT
4444
45-
- uses: actions/cache@v4
45+
- uses: actions/cache@v5
4646
with:
4747
path: |
4848
${{ steps.go-cache-paths.outputs.go-build }}

.github/workflows/integration-linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
steps:
2929

3030
- name: Check out code into the Go module directory
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v6
3232
with:
3333
fetch-depth: 0
3434

@@ -51,7 +51,7 @@ jobs:
5151
echo "go-build=$(go env GOCACHE)" >> $GITHUB_OUTPUT
5252
echo "go-mod=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT
5353
54-
- uses: actions/cache@v4
54+
- uses: actions/cache@v5
5555
with:
5656
path: |
5757
${{ steps.go-cache-paths.outputs.go-build }}

.github/workflows/linters-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
id: go
2222

2323
- name: Check out code into the Go module directory
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@v6
2525
with:
2626
fetch-depth: 0
2727

.github/workflows/scorecards.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: "Checkout code"
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
with:
2828
persist-credentials: false
2929

@@ -43,7 +43,7 @@ jobs:
4343

4444
# Upload the results as artifacts (optional).
4545
- name: "Upload artifact"
46-
uses: actions/upload-artifact@v5
46+
uses: actions/upload-artifact@v6
4747
with:
4848
name: SARIF file
4949
path: results.sarif

.github/workflows/unit-tests-darwin.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717

1818
- name: Check out code into the Go module directory
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0
2222

@@ -33,7 +33,7 @@ jobs:
3333
echo "go-build=$(go env GOCACHE)" >> $GITHUB_OUTPUT
3434
echo "go-mod=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT
3535
36-
- uses: actions/cache@v4
36+
- uses: actions/cache@v5
3737
with:
3838
path: |
3939
${{ steps.go-cache-paths.outputs.go-build }}

.github/workflows/unit-tests-linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
id: go
2222

2323
- name: Check out code into the Go module directory
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@v6
2525
with:
2626
fetch-depth: 0
2727

.github/workflows/unit-tests-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818

1919
- name: Check out code into the Go module directory
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 0
2323

@@ -35,7 +35,7 @@ jobs:
3535
echo "go-mod=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT
3636
shell: bash
3737

38-
- uses: actions/cache@v4
38+
- uses: actions/cache@v5
3939
with:
4040
path: |
4141
${{ steps.go-cache-paths.outputs.go-build }}

.github/workflows/verify-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Check out code
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0
2222

0 commit comments

Comments
 (0)