Commit 98cc2ab 1 parent d341f64 commit 98cc2ab Copy full SHA for 98cc2ab
File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 10
10
strategy :
11
11
matrix :
12
12
go-version :
13
- - " 1.21"
14
13
- " 1.22"
14
+ - " 1.23"
15
15
steps :
16
16
- name : Set up Docker buildx
17
17
uses : docker/setup-buildx-action@v3
22
22
username : ${{ github.actor }}
23
23
password : ${{ github.token }}
24
24
- name : Build image
25
- uses : docker/build-push-action@v5
25
+ uses : docker/build-push-action@v6
26
26
with :
27
27
build-args : |
28
28
GO_VERSION=${{ matrix.go-version }}
Original file line number Diff line number Diff line change @@ -3,22 +3,22 @@ name: Weekly Release
3
3
# Build a fresh image every week.
4
4
on :
5
5
schedule :
6
- - cron : " 0 14 * * 1" # run at 9am eastern US time every Monday
6
+ - cron : 0 14 * * 1 # run at 9am eastern US time every Monday
7
7
push :
8
8
branches :
9
9
- main
10
10
11
11
env :
12
- LATEST_GO_VERSION : " 1.22 "
12
+ LATEST_GO_VERSION : " 1.23 "
13
13
14
14
jobs :
15
15
build_and_upload_image :
16
16
runs-on : ubuntu-latest
17
17
strategy :
18
18
matrix :
19
19
go-version :
20
- - " 1.21"
21
20
- " 1.22"
21
+ - " 1.23"
22
22
steps :
23
23
- name : Set up Docker buildx
24
24
uses : docker/setup-buildx-action@v3
30
30
password : ${{ github.token }}
31
31
- name : Build and Push Image
32
32
if : ${{ matrix.go-version != env.LATEST_GO_VERSION }}
33
- uses : docker/build-push-action@v5
33
+ uses : docker/build-push-action@v6
34
34
with :
35
35
build-args : |
36
36
GO_VERSION=${{ matrix.go-version }}
45
45
cache-to : type=gha,mode=max
46
46
- name : Build and Push 'latest' Image
47
47
if : ${{ matrix.go-version == env.LATEST_GO_VERSION }}
48
- uses : docker/build-push-action@v5
48
+ uses : docker/build-push-action@v6
49
49
with :
50
50
build-args : |
51
51
GO_VERSION=${{ matrix.go-version }}
You can’t perform that action at this time.
0 commit comments