Skip to content

Commit 1967add

Browse files
Bump the github-actions group across 1 directory with 6 updates
Bumps the github-actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/cache](https://github.com/actions/cache) | `5` | `6` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `9.2.1` | `9.3.0` | | [github/codeql-action/upload-sarif](https://github.com/github/codeql-action) | `4.36.2` | `4.36.3` | | [github/codeql-action/init](https://github.com/github/codeql-action) | `4.36.2` | `4.36.3` | | [github/codeql-action/analyze](https://github.com/github/codeql-action) | `4.36.2` | `4.36.3` | | [aquasecurity/trivy-action](https://github.com/aquasecurity/trivy-action) | `cf5c088a69634cd13ccddc735d7926162c31f9a6` | `c07df6fec6fa692e6fd1200d50aaa1fdd66f03c8` | Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6) Updates `golangci/golangci-lint-action` from 9.2.1 to 9.3.0 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@v9.2.1...v9.3.0) Updates `github/codeql-action/upload-sarif` from 4.36.2 to 4.36.3 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@8aad20d...54f647b) Updates `github/codeql-action/init` from 4.36.2 to 4.36.3 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@8aad20d...54f647b) Updates `github/codeql-action/analyze` from 4.36.2 to 4.36.3 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@8aad20d...54f647b) Updates `aquasecurity/trivy-action` from cf5c088a69634cd13ccddc735d7926162c31f9a6 to c07df6fec6fa692e6fd1200d50aaa1fdd66f03c8 - [Release notes](https://github.com/aquasecurity/trivy-action/releases) - [Commits](aquasecurity/trivy-action@cf5c088...c07df6f) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: golangci/golangci-lint-action dependency-version: 9.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: github/codeql-action/upload-sarif dependency-version: 4.36.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: github/codeql-action/init dependency-version: 4.36.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: github/codeql-action/analyze dependency-version: 4.36.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: aquasecurity/trivy-action dependency-version: c07df6fec6fa692e6fd1200d50aaa1fdd66f03c8 dependency-type: direct:production dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent ab77d0e commit 1967add

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626
echo "go-mod=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT
2727
2828
- name: Go build cache
29-
uses: actions/cache@v5
29+
uses: actions/cache@v6
3030
with:
3131
path: ${{ steps.go-cache-paths.outputs.go-build }}
3232
key: ${{ runner.os }}-release-go-build-${{ hashFiles('**/go.sum') }}
3333

3434
- name: Go mod cache
35-
uses: actions/cache@v5
35+
uses: actions/cache@v6
3636
with:
3737
path: ${{ steps.go-cache-paths.outputs.go-mod }}
3838
key: ${{ runner.os }}-release-go-mod-${{ hashFiles('**/go.sum') }}

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ jobs:
3131
with:
3232
go-version-file: "go.mod"
3333
- name: golangci-lint
34-
uses: golangci/golangci-lint-action@v9.2.1
34+
uses: golangci/golangci-lint-action@v9.3.0
3535
with:
3636
version: v2.11.4

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ jobs:
4141
retention-days: 5
4242

4343
- name: Upload to code-scanning
44-
uses: github/codeql-action/upload-sarif@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2
44+
uses: github/codeql-action/upload-sarif@54f647b7e1bb85c95cddabcd46b0c578ec92bc1a # v4.36.3
4545
with:
4646
sarif_file: results.sarif

.github/workflows/security.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ jobs:
3939
go-version-file: "go.mod"
4040

4141
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2
42+
uses: github/codeql-action/init@54f647b7e1bb85c95cddabcd46b0c578ec92bc1a # v4.36.3
4343
with:
4444
languages: go
4545

4646
- name: Perform CodeQL Analysis
47-
uses: github/codeql-action/analyze@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2
47+
uses: github/codeql-action/analyze@54f647b7e1bb85c95cddabcd46b0c578ec92bc1a # v4.36.3
4848
with:
4949
category: "/language:go"
5050

@@ -82,22 +82,22 @@ jobs:
8282
echo "image=code-marketplace:scan" >> "$GITHUB_OUTPUT"
8383
8484
- name: Run Trivy vulnerability scanner (table output for logs)
85-
uses: aquasecurity/trivy-action@cf5c088a69634cd13ccddc735d7926162c31f9a6 # v0.34.2
85+
uses: aquasecurity/trivy-action@c07df6fec6fa692e6fd1200d50aaa1fdd66f03c8 # v0.34.2
8686
with:
8787
image-ref: ${{ steps.build.outputs.image }}
8888
format: "table"
8989
severity: "LOW,MEDIUM,HIGH,CRITICAL"
9090

9191
- name: Run Trivy vulnerability scanner (SARIF output for GitHub)
92-
uses: aquasecurity/trivy-action@cf5c088a69634cd13ccddc735d7926162c31f9a6 # v0.34.2
92+
uses: aquasecurity/trivy-action@c07df6fec6fa692e6fd1200d50aaa1fdd66f03c8 # v0.34.2
9393
with:
9494
image-ref: ${{ steps.build.outputs.image }}
9595
format: "sarif"
9696
output: "trivy-results.sarif"
9797
severity: "LOW,MEDIUM,HIGH,CRITICAL"
9898

9999
- name: Upload Trivy scan results to GitHub Security tab
100-
uses: github/codeql-action/upload-sarif@8aad20d150bbac5944a9f9d289da16a4b0d87c1e # v4.36.2
100+
uses: github/codeql-action/upload-sarif@54f647b7e1bb85c95cddabcd46b0c578ec92bc1a # v4.36.3
101101
with:
102102
sarif_file: "trivy-results.sarif"
103103
category: "Trivy"

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ jobs:
4545
echo "go-mod=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT
4646
4747
- name: Go Build Cache
48-
uses: actions/cache@v5
48+
uses: actions/cache@v6
4949
with:
5050
path: ${{ steps.go-cache-paths.outputs.go-build }}
5151
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.**', '**.go') }}
5252

5353
- name: Go Mod Cache
54-
uses: actions/cache@v5
54+
uses: actions/cache@v6
5555
with:
5656
path: ${{ steps.go-cache-paths.outputs.go-mod }}
5757
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}

0 commit comments

Comments
 (0)