File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 8
8
runs-on : ubuntu-latest
9
9
steps :
10
10
- name : Checkout
11
- uses : actions/checkout@v3
11
+ uses : actions/checkout@v4
12
12
with :
13
13
fetch-depth : 0
14
14
15
15
- name : Docker meta
16
16
id : meta
17
- uses : docker/metadata-action@v4
17
+ uses : docker/metadata-action@v5
18
18
with :
19
19
images : |
20
20
ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}
@@ -25,20 +25,20 @@ jobs:
25
25
type=sha,prefix=
26
26
27
27
- name : Set up QEMU
28
- uses : docker/setup-qemu-action@v2
28
+ uses : docker/setup-qemu-action@v3
29
29
30
30
- name : Set up Docker Buildx
31
- uses : docker/setup-buildx-action@v2
31
+ uses : docker/setup-buildx-action@v3
32
32
33
33
- name : Login to GitHub Container Registry
34
- uses : docker/login-action@v2
34
+ uses : docker/login-action@v3
35
35
with :
36
36
registry : ghcr.io
37
37
username : ${{ github.repository_owner }}
38
38
password : ${{ secrets.GITHUB_TOKEN }}
39
39
40
40
- name : Build and push
41
- uses : docker/build-push-action@v3
41
+ uses : docker/build-push-action@v6
42
42
with :
43
43
context : .
44
44
platforms : linux/amd64,linux/arm/v7,linux/arm64/v8
Original file line number Diff line number Diff line change 1
- FROM --platform=$BUILDPLATFORM golang:1.22 -alpine AS build
1
+ FROM --platform=$BUILDPLATFORM golang:1.24 -alpine AS build
2
2
3
3
WORKDIR /build
4
4
You can’t perform that action at this time.
0 commit comments