Skip to content

Commit

Permalink
Fixed own deprecated usage of set-output; other warnings should resol…
Browse files Browse the repository at this point in the history
…ve automatically with the release of shivammathur/setup-php#654.
  • Loading branch information
Rekhyt committed Oct 24, 2022
1 parent fd39f19 commit 36043b7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/check_and_deploy.yml
Expand Up @@ -49,7 +49,7 @@ jobs:
steps:
- name: Get tag name
id: set-tag
run: echo ::set-output name=TAG_NAME::${GITHUB_REF:10}
run: echo "TAG_NAME=${GITHUB_REF:10}" >> $GITHUB_OUTPUT
- name: Check out repository code
uses: actions/checkout@v3
- name: Install PHP
Expand All @@ -75,7 +75,7 @@ jobs:
steps:
- name: Get tag name
id: set-tag
run: echo ::set-output name=TAG_NAME::${GITHUB_REF:10}
run: echo "TAG_NAME=${GITHUB_REF:10}" >> $GITHUB_OUTPUT
- name: Check out repository code
uses: actions/checkout@v3
- name: Install PHP
Expand All @@ -101,7 +101,7 @@ jobs:
steps:
- name: Get tag name
id: set-tag
run: echo ::set-output name=TAG_NAME::${GITHUB_REF:10}
run: echo "TAG_NAME=${GITHUB_REF:10}" >> $GITHUB_OUTPUT
- name: Load from cache (PHP 5)
uses: actions/cache@v2
with:
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
steps:
- name: Get tag name
id: set-tag
run: echo ::set-output name=TAG_NAME::${GITHUB_REF:10}
run: echo "TAG_NAME=${GITHUB_REF:10}" >> $GITHUB_OUTPUT
- name: Notify on Slack
uses: rtCamp/action-slack-notify@v2
env:
Expand All @@ -154,7 +154,7 @@ jobs:
steps:
- name: Get tag name
id: set-tag
run: echo ::set-output name=TAG_NAME::${GITHUB_REF:10}
run: echo "TAG_NAME=${GITHUB_REF:10}" >> $GITHUB_OUTPUT
- name: Notify on Slack
uses: rtCamp/action-slack-notify@v2
env:
Expand Down

0 comments on commit 36043b7

Please sign in to comment.