Skip to content

Commit bb08f11

Browse files
Bump the github-actions group across 1 directory with 3 updates (#199)
Bumps the github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/create-github-app-token](https://github.com/actions/create-github-app-token) and [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action). 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/create-github-app-token` from 2.1.4 to 2.2.0 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](actions/create-github-app-token@v2.1.4...v2.2.0) Updates `golangci/golangci-lint-action` from 8.0.0 to 9.1.0 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@v8.0.0...v9.1.0) --- 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/create-github-app-token dependency-version: 2.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: golangci/golangci-lint-action dependency-version: 9.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 8b2b200 commit bb08f11

18 files changed

+36
-36
lines changed

.github/workflows/ci-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
# Runs a set of commands using the runners shell
1717
- name: Invoke run_test
1818
run: |

.github/workflows/create-tag-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
runs-on: ubuntu-latest
3939
steps:
4040
- name: Checkout the code
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v6
4242
with:
4343
fetch-depth: 0
4444

.github/workflows/csm-release-libs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
runs-on: ubuntu-latest
3939
steps:
4040
- name: Checkout the code
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v6
4242
with:
4343
fetch-depth: 0 # Fetch the full history including tags
4444
- name: Set up Go

.github/workflows/csm-versions-update.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222

2323
- name: Get CSM Versions from dell/csm
2424
id: vars
@@ -40,7 +40,7 @@ jobs:
4040
# Needed for signing commits using Github App tokens
4141
# See: https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#commit-signing
4242
- name: Generate GitHub App Token
43-
uses: actions/create-github-app-token@v2.1.4
43+
uses: actions/create-github-app-token@v2.2.0
4444
id: generate-token
4545
with:
4646
app-id: ${{ vars.CSM_RELEASE_APP_ID }}

.github/workflows/go-common.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
steps:
3636
- name: Checkout code
37-
uses: actions/checkout@v5
37+
uses: actions/checkout@v6
3838

3939
- name: Setup Go
4040
uses: actions/setup-go@v6
@@ -99,7 +99,7 @@ jobs:
9999
runs-on: ubuntu-latest
100100
steps:
101101
- name: Checkout code
102-
uses: actions/checkout@v5
102+
uses: actions/checkout@v6
103103

104104
- name: Run Gosec
105105
uses: dell/common-github-actions/gosec-runner@main
@@ -112,7 +112,7 @@ jobs:
112112
runs-on: ubuntu-latest
113113
steps:
114114
- name: Checkout code
115-
uses: actions/checkout@v5
115+
uses: actions/checkout@v6
116116

117117
- name: gofmt and go vet
118118
uses: dell/common-github-actions/go-code-formatter-vetter@main
@@ -123,7 +123,7 @@ jobs:
123123
runs-on: ubuntu-latest
124124
steps:
125125
- name: Checkout the code
126-
uses: actions/checkout@v5
126+
uses: actions/checkout@v6
127127
- name: Run malware scan
128128
uses: dell/common-github-actions/malware-scanner@main
129129
with:

.github/workflows/go-static-analysis.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
go-version: "1.25"
4040
cache: false
4141
- name: Checkout the code
42-
uses: actions/checkout@v5
42+
uses: actions/checkout@v6
4343
- name: Grab golangci-lint config file
4444
continue-on-error: true
4545
run: |
@@ -50,7 +50,7 @@ jobs:
5050
run: |
5151
go mod vendor
5252
- name: golangci-lint
53-
uses: golangci/golangci-lint-action@v8.0.0
53+
uses: golangci/golangci-lint-action@v9.1.0
5454
with:
5555
version: latest
5656
skip-cache: true
@@ -62,7 +62,7 @@ jobs:
6262
runs-on: ubuntu-latest
6363
steps:
6464
- name: Checkout the code
65-
uses: actions/checkout@v5
65+
uses: actions/checkout@v6
6666
- name: setup python
6767
uses: actions/setup-python@v6
6868
with:

.github/workflows/go-version-workflow.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
check-latest: true
4242

4343
- name: Checkout the code
44-
uses: actions/checkout@v5
44+
uses: actions/checkout@v6
4545

4646
# This step will update the go version in:
4747
# 1 - go.mod files and go.mod toolchain, if found
@@ -77,7 +77,7 @@ jobs:
7777
7878
# Needed for signing commits using Github App tokens
7979
# See: https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#commit-signing
80-
- uses: actions/create-github-app-token@v2.1.4
80+
- uses: actions/create-github-app-token@v2.2.0
8181
id: generate-token
8282
with:
8383
app-id: ${{ vars.CSM_RELEASE_APP_ID }}

.github/workflows/image-version-workflow.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout the code
25-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2626
with:
2727
fetch-depth: 0 # Fetch the full history including the tags
2828

@@ -107,7 +107,7 @@ jobs:
107107
108108
# Needed for signing commits using Github App tokens
109109
# See: https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#commit-signing
110-
- uses: actions/create-github-app-token@v2.1.4
110+
- uses: actions/create-github-app-token@v2.2.0
111111
id: generate-token
112112
with:
113113
app-id: ${{ vars.CSM_RELEASE_APP_ID }}

.github/workflows/license-checker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout code
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424

2525
- name: Import GPG key
2626
uses: crazy-max/ghaction-import-gpg@v6

.github/workflows/operator-driver-version-update.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- name: Checkout csm repository
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131
with:
3232
repository: dell/csm
3333
path: csm
@@ -65,7 +65,7 @@ jobs:
6565
echo "CSI_UNITY=$csi_unity" >> $GITHUB_ENV
6666
6767
- name: Checkout csm-operator repository
68-
uses: actions/checkout@v5
68+
uses: actions/checkout@v6
6969
with:
7070
repository: dell/csm-operator
7171

@@ -99,7 +99,7 @@ jobs:
9999
# Needed for signing commits using Github App tokens
100100
# See: https://github.com/peter-evans/create-pull-request/blob/main/docs/concepts-guidelines.md#commit-signing
101101
- name: Generate GitHub App Token
102-
uses: actions/create-github-app-token@v2.1.4
102+
uses: actions/create-github-app-token@v2.2.0
103103
id: generate-token
104104
with:
105105
app-id: ${{ vars.CSM_RELEASE_APP_ID }}

0 commit comments

Comments
 (0)