diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 3d8c5bdf..de755461 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -49,9 +49,9 @@ jobs: if [ "${{ github.event_name }}" = "push" ]; then TAGS="${DOCKER_IMAGE}:latest" fi - echo ::set-output name=version::${VERSION} - echo ::set-output name=tags::${TAGS} - echo ::set-output name=created::$(date -u +'%Y-%m-%dT%H:%M:%SZ') + echo "version=${VERSION}" >> $GITHUB_OUTPUT + echo "tags=${TAGS}" >> $GITHUB_OUTPUT + echo "created=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT - name: Set up JDK 11 uses: actions/setup-java@v2 with: