Skip to content

Commit

Permalink
Merge pull request #509 from cybertec-postgresql/499-use-environment-…
Browse files Browse the repository at this point in the history
…variable-in-gha-instead-of-deprecated-set-output-command

[*] use envvar in GHA instead of deprecated `set-output` command, closes #499
  • Loading branch information
pashagolub committed Nov 3, 2022
2 parents ea1dd27 + ab3e031 commit 6f5348b
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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Version strings
id: version
run: |
echo "::set-output name=RELEASE_TIME::$(git show -s --format=%cI HEAD)"
echo "RELEASE_TIME=$(git show -s --format=%cI HEAD)" >> $GITHUB_OUTPUT
- name: Publish to Registry
uses: elgohr/Publish-Docker-Github-Action@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Version strings
id: version
run: |
echo "::set-output name=RELEASE_TIME::$(git show -s --format=%cI HEAD)"
echo "RELEASE_TIME=$(git show -s --format=%cI HEAD)" >> $GITHUB_OUTPUT
- name: Publish to Registry
uses: elgohr/Publish-Docker-Github-Action@v4
Expand Down

0 comments on commit 6f5348b

Please sign in to comment.