Skip to content

Commit f600245

Browse files
authored
Update GitHub Actions versions (#6)
Signed-off-by: Jakub Scholz <www@scholzj.com>
1 parent ef4e024 commit f600245

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/build.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,21 @@ jobs:
1616

1717
steps:
1818
#Preparations
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020
- name: Setup Go
21-
uses: actions/setup-go@v5
21+
uses: actions/setup-go@v6
2222
with:
2323
go-version: '1.25.x'
2424
- name: Log in to Docker Repository
25-
uses: docker/login-action@v3
25+
uses: docker/login-action@v4
2626
with:
2727
registry: ghcr.io
2828
username: ${{ github.actor }}
2929
password: ${{ secrets.GITHUB_TOKEN }}
3030
- name: Set up QEMU
31-
uses: docker/setup-qemu-action@v3
31+
uses: docker/setup-qemu-action@v4
3232
- name: Set up Docker Buildx
33-
uses: docker/setup-buildx-action@v3
33+
uses: docker/setup-buildx-action@v4
3434

3535
# Build the Go project
3636
- name: Run local build checks
@@ -71,7 +71,7 @@ jobs:
7171
7272
# Upload the binaries for use from CLI
7373
- name: Upload binary
74-
uses: actions/upload-artifact@v4
74+
uses: actions/upload-artifact@v7
7575
with:
7676
name: strimzi-shutdown
7777
path: strimzi-shutdown-*

.github/workflows/pr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ jobs:
77
runs-on: ubuntu-latest
88

99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v6
1111
- name: Setup Go
12-
uses: actions/setup-go@v5
12+
uses: actions/setup-go@v6
1313
with:
1414
go-version: '1.25.x'
1515
- name: Build

0 commit comments

Comments
 (0)