diff options
author | 2023-01-18 18:57:27 +0000 | |
---|---|---|
committer | 2023-01-18 18:57:27 +0000 | |
commit | c9a0d3aec91a7cda9b808da5273e180b56101d96 (patch) | |
tree | 2680542507b733decc51ff74cc5f71257d647e2e /.github/workflows/deploy.yaml | |
parent | Merge pull request #853 from python-discord/dependabot/pip/flake8-bugbear-23.... (diff) |
Stop using deprecated set-output workflow command
Diffstat (limited to '.github/workflows/deploy.yaml')
-rw-r--r-- | .github/workflows/deploy.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index d4c6fecb..f27690f0 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -20,7 +20,7 @@ jobs: id: sha_tag run: | tag=$(cut -c 1-7 <<< $GITHUB_SHA) - echo "::set-output name=tag::$tag" + echo "tag=$tag" >> $GITHUB_OUTPUT # Check out the private Kubernetes repository for the # deployment.yaml file using a GitHub Personal Access |