Skip to content

Commit f675fcb

Browse files
Merge #6230: fix: resolve GitHub workflow warnings
88bf7a8 fix: resolve GitHub workflow warnings (UdjinM6) Pull request description: ## Issue being fixed or feature implemented https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ ## What was done? ## How Has This Been Tested? Check results for CI and Guix actions (in future PRs? 🤷‍♂️ ) ## Breaking Changes n/a ## Checklist: - [x] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [ ] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_ Top commit has no ACKs. Tree-SHA512: 91464dbb85767e27bd26484cf597f7794e450d56901a407864ce9d3880fb15118047ee040f4e4ab19ea2a0a6dc8aaa6239353427f35f9c7500a6df0fdff6fb6f
2 parents 114d787 + 88bf7a8 commit f675fcb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
run: |
2929
BRANCH_NAME=$(echo "${GITHUB_REF##*/}" | tr '[:upper:]' '[:lower:]')
3030
REPO_NAME=$(echo "${{ github.repository }}" | tr '[:upper:]' '[:lower:]')
31-
echo "::set-output name=image-tag::${BRANCH_NAME}"
32-
echo "::set-output name=repo-name::${REPO_NAME}"
31+
echo "image-tag=${BRANCH_NAME}" >> $GITHUB_OUTPUT
32+
echo "repo-name=${REPO_NAME}" >> $GITHUB_OUTPUT
3333
3434
- name: Set up Docker Buildx
3535
uses: docker/setup-buildx-action@v3

.github/workflows/guix-build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ jobs:
3232
echo "host_group_id=$(id -g)" >> $GITHUB_OUTPUT
3333
BRANCH_NAME=$(echo "${GITHUB_REF##*/}" | tr '[:upper:]' '[:lower:]')
3434
REPO_NAME=$(echo "${{ github.repository }}" | tr '[:upper:]' '[:lower:]')
35-
echo "::set-output name=image-tag::${BRANCH_NAME}"
36-
echo "::set-output name=repo-name::${REPO_NAME}"
35+
echo "image-tag=${BRANCH_NAME}" >> $GITHUB_OUTPUT
36+
echo "repo-name=${REPO_NAME}" >> $GITHUB_OUTPUT
3737
3838
- name: Login to GitHub Container Registry
3939
uses: docker/login-action@v3

0 commit comments

Comments
 (0)