Skip to content

Commit

Permalink
Merge pull request #1624 from arunsathiya/master
Browse files Browse the repository at this point in the history
Use GITHUB_OUTPUT envvar instead of set-output command as the latter is deprecated
  • Loading branch information
richardm-stripe authored Jan 4, 2024
2 parents 577d64a + 905597d commit 03765fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Get Composer Cache Directory
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
with:
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
- name: Get Composer Cache Directory
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}

publish:
# Doesn't actually publish. The publish happens via a packagist webhook configured in the Github UI. But we still display a message here
# Doesn't actually publish. The publish happens via a packagist webhook configured in the Github UI. But we still display a message here
name: Publish
if: >-
(github.event_name == 'workflow_dispatch' || github.event_name == 'push') &&
Expand Down

0 comments on commit 03765fc

Please sign in to comment.