File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -56,22 +56,22 @@ jobs:
56
56
if [ "${{ github.event_name }}" = "push" ]; then
57
57
TAGS="$TAGS,${DOCKER_IMAGE}:sha-${GITHUB_SHA::8}"
58
58
fi
59
- echo ::set-output name= version:: ${VERSION}
60
- echo ::set-output name= tags:: ${TAGS}
61
- echo ::set-output name= created:: $(date -u +'%Y-%m-%dT%H:%M:%SZ')
59
+ echo " version= ${VERSION}" >> $GITHUB_OUTPUT
60
+ echo " tags= ${TAGS}" >> $GITHUB_OUTPUT
61
+ echo " created= $(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT
62
62
63
63
- name : Set up Docker Buildx
64
- uses : docker/setup-buildx-action@v2
64
+ uses : docker/setup-buildx-action@v3
65
65
66
66
- name : Login to Container registry
67
- uses : docker/login-action@v2
67
+ uses : docker/login-action@v3
68
68
with :
69
69
registry : ${{ matrix.registry }}
70
70
username : ${{ github.actor }}
71
71
password : ${{ secrets.GITHUB_TOKEN }}
72
72
73
73
- name : Build and push container image
74
- uses : docker/build-push-action@v3
74
+ uses : docker/build-push-action@v5
75
75
with :
76
76
context : ${{ matrix.context }}
77
77
file : ${{ matrix.context }}/${{ matrix.file }}
You can’t perform that action at this time.
0 commit comments