Skip to content

Commit b1a0f92

Browse files
Bump the gh-dependency group across 1 directory with 6 updates
Bumps the gh-dependency group with 6 updates in the /.github/workflows directory: | Package | From | To | | --- | --- | --- | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [github/codeql-action](https://github.com/github/codeql-action) | `3` | `4` | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `8` | `9` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `6` | | [SonarSource/sonarqube-scan-action](https://github.com/sonarsource/sonarqube-scan-action) | `5` | `6` | Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@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/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 `golangci/golangci-lint-action` from 8 to 9 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@v8...v9) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) Updates `SonarSource/sonarqube-scan-action` from 5 to 6 - [Release notes](https://github.com/sonarsource/sonarqube-scan-action/releases) - [Commits](SonarSource/sonarqube-scan-action@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-dependency - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-dependency - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-dependency - dependency-name: golangci/golangci-lint-action dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-dependency - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-dependency - dependency-name: SonarSource/sonarqube-scan-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-dependency ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 97a7523 commit b1a0f92

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/cifuzz.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ jobs:
3030
output-sarif: true
3131

3232
- name: Upload Crash
33-
uses: actions/upload-artifact@v4
33+
uses: actions/upload-artifact@v5
3434
if: failure() && steps.build.outcome == 'success'
3535
with:
3636
name: artifacts
3737
path: ./out/artifacts
3838

3939
- name: Upload Sarif
4040
if: always() && steps.build.outcome == 'success'
41-
uses: github/codeql-action/upload-sarif@v3
41+
uses: github/codeql-action/upload-sarif@v4
4242
with:
4343
# Path to SARIF file relative to the root of the repository
4444
sarif_file: cifuzz-sarif/results.sarif

.github/workflows/golangci-lint.yml

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

1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020

2121
- name: Set up Go 1.20+
2222
uses: actions/setup-go@v6
@@ -27,7 +27,7 @@ jobs:
2727
- run: go version
2828

2929
- name: golangci-lint
30-
uses: golangci/golangci-lint-action@v8
30+
uses: golangci/golangci-lint-action@v9
3131
with:
3232
version: v2.4.0
3333
args: --timeout=5m

.github/workflows/staticAnalysis.yml

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

1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515

1616
- name: Set up Go 1.20+
1717
uses: actions/setup-go@v6

.github/workflows/test-for-fork.yml

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

2525
# Checks-out repository under $GITHUB_WORKSPACE
2626
- name: Checkout
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828

2929
# Build everything
3030
- name: Run a build

.github/workflows/test.yml

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

3434
# Checks-out repository under $GITHUB_WORKSPACE with tags and history (needed by "SonarCloud Scan" step)
3535
- name: Full checkout
36-
uses: actions/checkout@v5
36+
uses: actions/checkout@v6
3737
with:
3838
fetch-depth: 0 # Full clone for SonarCloud
3939

@@ -60,7 +60,7 @@ jobs:
6060
shell: bash
6161

6262
- name: Upload coverage and report files
63-
uses: actions/upload-artifact@v4
63+
uses: actions/upload-artifact@v5
6464
with:
6565
name: ${{ hashFiles('./outputs') || 'none' }}
6666
path: ./outputs
@@ -73,12 +73,12 @@ jobs:
7373
runs-on: ubuntu-latest
7474
steps:
7575
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
76-
- uses: actions/checkout@v5
76+
- uses: actions/checkout@v6
7777
with:
7878
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
7979

8080
- name: Download artifacts
81-
uses: actions/download-artifact@v5
81+
uses: actions/download-artifact@v6
8282
with:
8383
path: ./outputs
8484

@@ -96,7 +96,7 @@ jobs:
9696
directory: .tmp/
9797

9898
- name: SonarQube Scan
99-
uses: SonarSource/sonarqube-scan-action@v5
99+
uses: SonarSource/sonarqube-scan-action@v6
100100
env:
101101
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
102102
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
@@ -119,7 +119,7 @@ jobs:
119119
- run: go version
120120

121121
- name: Checkout
122-
uses: actions/checkout@v5
122+
uses: actions/checkout@v6
123123

124124
- name: Run a build
125125
run: go build ./...

0 commit comments

Comments
 (0)