Skip to content

Commit

Permalink
fixing set-output deprecation (#16)
Browse files Browse the repository at this point in the history
* fixing set-output deprecation

* fixing type in github actions

* fixing github output syntax
  • Loading branch information
szamuboy authored Nov 2, 2022
1 parent 20a1062 commit ef641e5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: 2
updates:
- package-ecosystem: "" # See documentation for possible values
- package-ecosystem: "github-actions" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
4 changes: 3 additions & 1 deletion .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ jobs:
echo "tags=${{ steps.meta.outputs.tags }}"
tag=$(echo "${{ steps.meta.outputs.tags }}" | head -n 1)
echo "tag=$tag"
echo "::set-output name=tag::${tag}"
# echo "::set-output name=tag::${tag}"
# https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
echo "tag=${tag}" >> $GITHUB_OUTPUT
- name: Login to DockerHub
if: github.event_name == 'release'
uses: docker/login-action@v2
Expand Down

0 comments on commit ef641e5

Please sign in to comment.