Skip to content

Commit

Permalink
Update how output variables are stored in Actions (#206)
Browse files Browse the repository at this point in the history
Replace the deprecated `set-output` in GitHub Actions for concatenating
name and values into the `GITHUB_OUTPUT` env variable.
Reference:
https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
  • Loading branch information
santisoler authored Jun 18, 2024
1 parent eb5f45e commit 18f4fb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
- name: Get the pip cache folder
id: pip-cache
run: |
echo "::set-output name=dir::$(pip cache dir)"
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
- name: Setup caching for pip packages
uses: actions/cache@v4
Expand Down

0 comments on commit 18f4fb3

Please sign in to comment.