Skip to content

Commit

Permalink
Fix for the deprecated set-output command
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinpinto committed Feb 27, 2024
1 parent b66d44a commit 4e02b22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- name: "Retrieve the short SHA"
id: "sha"
run: echo "::set-output name=value::$(echo ${GITHUB_SHA::8})"
run: echo "value=$(echo ${GITHUB_SHA::8})" >> "$GITHUB_OUTPUT"

- name: "Set up QEMU"
uses: "docker/setup-qemu-action@v3"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- name: "Retrieve the short SHA"
id: "sha"
run: echo "::set-output name=value::$(echo ${GITHUB_SHA::8})"
run: echo "value=$(echo ${GITHUB_SHA::8})" >> "$GITHUB_OUTPUT"

- name: "Set up QEMU"
uses: "docker/setup-qemu-action@v3"
Expand Down

0 comments on commit 4e02b22

Please sign in to comment.