Skip to content

Commit 7cfe8da

Browse files
authored
Merge pull request #33 from snorwin/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents 03f2f8b + 280e5db commit 7cfe8da

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@v4
14+
- uses: actions/checkout@v5
1515
- name: golangci-lint
1616
uses: golangci/golangci-lint-action@v8
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@v4
27+
uses: actions/checkout@v5
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@v4
31+
uses: actions/checkout@v5
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@v4
29+
uses: actions/checkout@v5
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@v4
49+
uses: actions/checkout@v5
5050
- name: Create kind cluster
5151
uses: helm/kind-action@v1.12.0
5252
- name: Install Helm chart for testing

0 commit comments

Comments
 (0)