Skip to content

Commit

Permalink
set-output is deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
eberrigan committed Nov 21, 2024
1 parent 7a942df commit b140d27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-build-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- name: Get Git SHA
id: git_info
run: echo "::set-output name=sha::$(git rev-parse HEAD)"
run: echo "sha=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT

- name: Set up Docker Buildx
# https://github.com/docker/setup-buildx-action
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- name: Get Git SHA
id: get_sha
run: echo "::set-output name=sha::$(git rev-parse HEAD)"
run: echo "sha=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT

- name: Debug Git SHA
run: echo "Git SHA: ${{ steps.get_sha.outputs.sha }}"
Expand Down

0 comments on commit b140d27

Please sign in to comment.