Skip to content

Commit f8af863

Browse files
authored
Merge pull request #155 from Mellanox/dependabot/github_actions/actions/checkout-5
chore: bump actions/checkout from 4 to 5
2 parents 5ba96ca + a518297 commit f8af863

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/build-images.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
run: echo ::set-output name=repository::$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')
1010

1111
- name: Check out code into the Go module directory
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313

1414
- name: Set up Docker Buildx
1515
uses: docker/setup-buildx-action@v3

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Check out code into the Go module directory
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313

1414
- name: Install Go
1515
uses: actions/setup-go@v5

.github/workflows/push-master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
run: echo ::set-output name=repository::$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')
1313

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

.github/workflows/push-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
run: echo ::set-output name=repository::$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]')
1313

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

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
go-version: ${{ matrix.go-version }}
1515

1616
- name: Checkout code
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: lint
2020
run: make lint
@@ -33,7 +33,7 @@ jobs:
3333
go-version: 1.24.x
3434

3535
- name: Checkout code
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v5
3737

3838
- name: Go test with coverage
3939
run: make test-coverage

0 commit comments

Comments
 (0)