Skip to content

Commit cec9c52

Browse files
authored
Merge pull request #38 from Mellanox/dependabot/github_actions/actions/checkout-5
chore: bump actions/checkout from 4 to 5
2 parents 0cbef08 + 3af6260 commit cec9c52

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/build-test-lint.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
with:
1515
go-version: ${{ matrix.go-version }}
1616
- name: Check out code into the Go module directory
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- name: Install Task
1919
uses: arduino/setup-task@v2
2020
with:
@@ -34,7 +34,7 @@ jobs:
3434
with:
3535
go-version: 1.24.x
3636
- name: Check out code into the Go module directory
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838
- name: Install Task
3939
uses: arduino/setup-task@v2
4040
with:
@@ -51,7 +51,7 @@ jobs:
5151
with:
5252
go-version: 1.24.x
5353
- name: Check out code into the Go module directory
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v5
5555
- name: Install Task
5656
uses: arduino/setup-task@v2
5757
with:
@@ -63,7 +63,7 @@ jobs:
6363
runs-on: ubuntu-latest
6464
steps:
6565
- name: Check out code into the Go module directory
66-
uses: actions/checkout@v4
66+
uses: actions/checkout@v5
6767
with:
6868
fetch-depth: 0
6969
- name: Install Task
@@ -77,7 +77,7 @@ jobs:
7777
runs-on: ubuntu-latest
7878
needs: build
7979
steps:
80-
- uses: actions/checkout@v4
80+
- uses: actions/checkout@v5
8181
- name: Set up Go
8282
uses: actions/setup-go@v5
8383
with:
@@ -89,7 +89,7 @@ jobs:
8989
runs-on: ubuntu-latest
9090
needs: build
9191
steps:
92-
- uses: actions/checkout@v4
92+
- uses: actions/checkout@v5
9393
- name: Set up Go
9494
uses: actions/setup-go@v5
9595
with:

.github/workflows/codeql.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
language: [go]
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
- name: Initialize CodeQL
2525
uses: github/codeql-action/init@v3
2626
with:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
id: repo_name
1313
run: echo ::set-output name=repository::$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')
1414
- name: Check out code into the Go module directory
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818
- name: Set up QEMU

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
id: repo_name
1313
run: echo ::set-output name=repository::$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')
1414
- name: Check out code into the Go module directory
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818
- name: Set up QEMU

0 commit comments

Comments
 (0)