Skip to content

Commit 4878db9

Browse files
[CI] Fixed Deprecated save-output
save-output was deprecated. Resolved. See: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
1 parent d81fe02 commit 4878db9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/containers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
id: generate
3737
run: |
3838
REPO='${{ github.repository }}'
39-
echo "::set-output name=image::ghcr.io/${REPO,,}/ubuntu/focal/build"
39+
echo "image=ghcr.io/${REPO,,}/ubuntu/focal/build" >> $GITHUB_OUTPUT
4040
4141
- name: ⛴️ Build container image
4242
run: docker build -t ${{ steps.generate.outputs.image }} -f Dockerfile .

0 commit comments

Comments
 (0)