28
28
uses : actions/checkout@v4
29
29
30
30
- name : Setup go
31
- uses : actions/setup-go@v4
31
+ uses : actions/setup-go@v5
32
32
with :
33
33
go-version-file : go.mod
34
34
85
85
uses : actions/checkout@v4
86
86
87
87
- name : Setup Docker Buildx
88
- uses : docker/setup-buildx-action@v2
88
+ uses : docker/setup-buildx-action@v3
89
89
90
90
- name : Prepare repository name
91
91
id : prepare-repository-name
@@ -95,12 +95,12 @@ jobs:
95
95
96
96
- name : Extract metadata (tags, labels) for Docker
97
97
id : extract-metadata
98
- uses : docker/metadata-action@v4
98
+ uses : docker/metadata-action@v5
99
99
with :
100
100
images : ${{ steps.prepare-repository-name.outputs.repository }}
101
101
102
102
- name : Build Docker image
103
- uses : docker/build-push-action@v4
103
+ uses : docker/build-push-action@v5
104
104
with :
105
105
platforms : linux/amd64,linux/arm64
106
106
context : .
@@ -118,7 +118,7 @@ jobs:
118
118
labels : ${{ steps.extract-metadata.outputs.labels }}
119
119
120
120
- name : Upload Docker image archive
121
- uses : actions/upload-artifact@v3
121
+ uses : actions/upload-artifact@v4
122
122
with :
123
123
name : image.tar
124
124
path : ${{ runner.temp }}/image.tar
0 commit comments