1
1
Fork 0
mirror of https://github.com/docker-mailserver/docker-mailserver synced 2024-06-02 17:26:04 +02:00

ci: update to new output format on GH actions (#2892)

This commit is contained in:
Georg Lauterbach 2022-11-07 09:31:29 +01:00 committed by GitHub
parent 0ef8d5ae2b
commit 2bc4078e35
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -49,7 +49,7 @@ jobs:
run: |
git pull
git checkout contributors-update
echo "::set-output name=head_sha::$(git rev-parse contributors-update)"
echo "head_sha=$(git rev-parse contributors-update)" >>"${GITHUB_OUTPUT}"
- name: 'Commit Status: Set Lint status to success (skipped)'
uses: myrotvorets/set-commit-status-action@1.1.5

View File

@ -55,7 +55,7 @@ jobs:
| awk '{ print $1 }' \
)
echo "::set-output name=digest::${IMAGE_CHECKSUM}"
echo "digest=${IMAGE_CHECKSUM}" >>"${GITHUB_OUTPUT}"
# Attempts to restore the build cache from a prior build run.
# If the exact key is not restored, then upon a successful job run

View File

@ -69,7 +69,7 @@ jobs:
- name: 'Acquire the image version'
id: get-version
shell: bash
run: echo "::set-output name=version::$(<VERSION)"
run: echo "version=$(<VERSION)" >>"${GITHUB_OUTPUT}"
- name: 'Build and publish images'
uses: docker/build-push-action@v3.2.0