Skip to content

Commit 75ba865

Browse files
authored
Merge pull request #36 from snorwin/dependabot/github_actions/actions/checkout-6
Bump actions/checkout from 5 to 6
2 parents 74c3349 + 99dc031 commit 75ba865

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: lint
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v6
1515
- name: golangci-lint
1616
uses: golangci/golangci-lint-action@v9
1717
with:

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
password: ${{ secrets.GITHUB_TOKEN }}
2525
logout: false
2626
- name: Checkout
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828
- name: Modify Dockerfile
2929
run: |
3030
sed -i -e "s|%VERSION%|latest|g" Dockerfile

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
password: ${{ secrets.GITHUB_TOKEN }}
2929
logout: false
3030
- name: Checkout
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v6
3232
- name: Modify Dockerfile
3333
run: |
3434
sed -i -e "s|%VERSION%|${{ matrix.tag }}|g" Dockerfile

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
password: ${{ secrets.GITHUB_TOKEN }}
2727
logout: false
2828
- name: Checkout
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030
- name: Modify Dockerfile
3131
run: |
3232
sed -i -e "s|%VERSION%|latest|g" Dockerfile
@@ -46,7 +46,7 @@ jobs:
4646
runs-on: ubuntu-latest
4747
steps:
4848
- name: Checkout
49-
uses: actions/checkout@v5
49+
uses: actions/checkout@v6
5050
- name: Create kind cluster
5151
uses: helm/[email protected]
5252
- name: Install Helm chart for testing

0 commit comments

Comments
 (0)