This repository was archived by the owner on Aug 12, 2025. It is now read-only.
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 @@ -36,10 +36,10 @@ runs:
36
36
IMAGES=${GHCR_REGISTRY}/${IMAGE_NAME}
37
37
[[ -n "$DOCKER_USERNAME" ]] && IMAGES=${IMAGES},${DOCKER_REGISTRY}/${IMAGE_NAME}
38
38
[[ -n "$QUAY_USERNAME" ]] && IMAGES=${IMAGES},${QUAY_REGISTRY}/${IMAGE_NAME}
39
- echo "::set-output name= images:: ${IMAGES}"
39
+ echo "images= ${IMAGES}" >> $GITHUB_OUTPUT
40
40
- name : Docker manager metadata
41
41
id : meta
42
- uses : docker/metadata-action@v3
42
+ uses : docker/metadata-action@v4
43
43
with :
44
44
images : ${{ steps.image-urls.outputs.images }}
45
45
flavor : ${{ inputs.metadata_flavor }}
Original file line number Diff line number Diff line change @@ -8,23 +8,23 @@ inputs:
8
8
runs :
9
9
using : " composite"
10
10
steps :
11
- - uses : actions/setup-go@v2
11
+ - uses : actions/setup-go@v4
12
12
with :
13
13
go-version : ${{ inputs.version }}
14
14
- id : go-cache-paths
15
15
shell : bash
16
16
run : |
17
- echo "::set-output name= go-build:: $(go env GOCACHE)"
18
- echo "::set-output name= go-mod:: $(go env GOMODCACHE)"
17
+ echo "go-build= $(go env GOCACHE)" >> $GITHUB_OUTPUT
18
+ echo "go-mod= $(go env GOMODCACHE)" >> $GITHUB_OUTPUT
19
19
- name : Go Mod Cache
20
- uses : actions/cache@v2
20
+ uses : actions/cache@v3
21
21
with :
22
22
path : ${{ steps.go-cache-paths.outputs.go-mod }}
23
23
key : ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
24
24
restore-keys : |
25
25
${{ runner.os }}-go-mod-
26
26
- name : Go Build Cache
27
- uses : actions/cache@v2
27
+ uses : actions/cache@v3
28
28
with :
29
29
path : ${{ steps.go-cache-paths.outputs.go-build }}
30
30
key : ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
You can’t perform that action at this time.
0 commit comments