ci: update to new output format on GH actions (#2892)
This commit is contained in:
parent
0ef8d5ae2b
commit
2bc4078e35
|
@ -49,7 +49,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
git pull
|
git pull
|
||||||
git checkout contributors-update
|
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)'
|
- name: 'Commit Status: Set Lint status to success (skipped)'
|
||||||
uses: myrotvorets/set-commit-status-action@1.1.5
|
uses: myrotvorets/set-commit-status-action@1.1.5
|
||||||
|
|
|
@ -55,7 +55,7 @@ jobs:
|
||||||
| awk '{ print $1 }' \
|
| 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.
|
# Attempts to restore the build cache from a prior build run.
|
||||||
# If the exact key is not restored, then upon a successful job run
|
# If the exact key is not restored, then upon a successful job run
|
||||||
|
|
|
@ -69,7 +69,7 @@ jobs:
|
||||||
- name: 'Acquire the image version'
|
- name: 'Acquire the image version'
|
||||||
id: get-version
|
id: get-version
|
||||||
shell: bash
|
shell: bash
|
||||||
run: echo "::set-output name=version::$(<VERSION)"
|
run: echo "version=$(<VERSION)" >>"${GITHUB_OUTPUT}"
|
||||||
|
|
||||||
- name: 'Build and publish images'
|
- name: 'Build and publish images'
|
||||||
uses: docker/build-push-action@v3.2.0
|
uses: docker/build-push-action@v3.2.0
|
||||||
|
|
Loading…
Reference in New Issue