Skip to content

Commit 82d5d2f

Browse files
authored
Merge pull request #232 from Mellanox/dependabot/github_actions/actions/checkout-6
chore: bump actions/checkout from 5 to 6
2 parents dacd747 + ee88873 commit 82d5d2f

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
with:
1414
go-version: '1.24.x'
1515
- name: checkout
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
- name: lint
1818
run: make lint
1919
test:
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
go-version: '1.24.x'
2929
- name: checkout
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131
- name: install hwdata -yq
3232
run: sudo apt-get install hwdata -yq
3333
- name: test
@@ -43,6 +43,6 @@ jobs:
4343
with:
4444
go-version: '1.24.x'
4545
- name: checkout
46-
uses: actions/checkout@v5
46+
uses: actions/checkout@v6
4747
- name: build
4848
run: make build

.github/workflows/codeql.yaml

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

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828

2929
- name: Initialize CodeQL
3030
uses: github/codeql-action/init@v4

.github/workflows/image-push-master.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
run: echo ::set-output name=repository::$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')
1515

1616
- name: check out the repo
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818

1919
- name: set up Docker Buildx
2020
uses: docker/setup-buildx-action@v3
@@ -45,7 +45,7 @@ jobs:
4545
run: echo ::set-output name=repository::$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')
4646

4747
- name: check out the repo
48-
uses: actions/checkout@v5
48+
uses: actions/checkout@v6
4949

5050
- name: set up Docker Buildx
5151
uses: docker/setup-buildx-action@v3

.github/workflows/release-ubi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-24.04
1616
steps:
1717
- name: Check out the repo
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919

2020
- name: Log in to Docker Hub
2121
uses: docker/login-action@v3

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
id: repo_name
2020
run: echo ::set-output name=repository::$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')
2121
- name: Check out the repo
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323

2424
- name: set up Docker Buildx
2525
uses: docker/setup-buildx-action@v3
@@ -60,7 +60,7 @@ jobs:
6060
run: echo ::set-output name=repository::$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')
6161

6262
- name: Check out the repo
63-
uses: actions/checkout@v5
63+
uses: actions/checkout@v6
6464

6565
- name: set up Docker Buildx
6666
uses: docker/setup-buildx-action@v3

.github/workflows/static-scan.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
with:
1111
go-version: 1.24.x
1212
- name: checkout PR
13-
uses: actions/checkout@v5
13+
uses: actions/checkout@v6
1414
- name: run make lint
1515
run: make lint
1616
hadolint:
@@ -21,6 +21,6 @@ jobs:
2121
with:
2222
go-version: 1.24.x
2323
- name: checkout PR
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@v6
2525
- name: run make hadolint
2626
run: make hadolint

0 commit comments

Comments
 (0)