Skip to content

Commit 2993b76

Browse files
committed
ci: replace deprecated set-output with GITHUB_OUTPUT
updates github actions to use environment files instead of deprecated set-output commands
1 parent b18785e commit 2993b76

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/latest-kubo-tag/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ cd kubo
1414
git describe --tags "${LATEST_IPFS_TAG}"
1515

1616
echo "The latest Kubo tag is ${LATEST_IPFS_TAG}"
17-
echo "::set-output name=latest_tag::${LATEST_IPFS_TAG}"
17+
echo "latest_tag=${LATEST_IPFS_TAG}" >> $GITHUB_OUTPUT

.github/actions/update-with-latest-versions/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,4 @@ git config --global user.name "${GITHUB_ACTOR}@users.noreply.github.com"
8585
git add -u
8686
git commit -m "Bumped documentation & installation docs."
8787
git push -fu origin ${BRANCH}
88-
echo "::set-output name=updated_branch::${BRANCH}"
88+
echo "updated_branch=${BRANCH}" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)