Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Deprecate set-output
Yoann Chaudet committed Nov 1, 2022

Unverified

No user is associated with the committer email.
1 parent 55cb9c5 commit eb5eb8e
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
@@ -43,7 +43,7 @@ jobs:
else
tags=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref_name }}
fi
echo "::set-output name=tags::$tags"
echo "tags=$tags" >> $GITHUB_OUTPUT
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v3
2 changes: 1 addition & 1 deletion .github/workflows/record.yml
@@ -21,7 +21,7 @@ jobs:
id: grep-image-content
run: |
image=$(grep -E "jekyll-build-pages.*\'" action.yml)
echo "::set-output name=image::$image"
echo "image=$image" >> $GITHUB_OUTPUT
- uses: actions-ecosystem/action-regex-match@v2
id: regex-match
with:
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
@@ -26,7 +26,7 @@ jobs:
id: grep-image-content
run: |
image=$(grep -E "jekyll-build-pages.*\'" action.yml)
echo "::set-output name=image::$image"
echo "image=$image" >> $GITHUB_OUTPUT
- uses: actions-ecosystem/action-regex-match@v2
id: regex-match
with:
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
@@ -27,7 +27,7 @@ jobs:
id: grep-image-content
run: |
image=$(grep -E "jekyll-build-pages.*\'" action.yml)
echo "::set-output name=image::$image"
echo "image=$image" >> $GITHUB_OUTPUT
- uses: actions-ecosystem/action-regex-match@v2
id: regex-match
with:

0 comments on commit eb5eb8e

Please sign in to comment.