mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
ci: update to new output format on GH actions (#2892)
This commit is contained in:
parent
0ef8d5ae2b
commit
2bc4078e35
2
.github/workflows/contributors.yml
vendored
2
.github/workflows/contributors.yml
vendored
|
@ -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
|
||||
|
|
2
.github/workflows/generic_build.yml
vendored
2
.github/workflows/generic_build.yml
vendored
|
@ -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
|
||||
|
|
2
.github/workflows/generic_publish.yml
vendored
2
.github/workflows/generic_publish.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue