From 36043b75544b62e5ab5fd49ab764cee13c21a20b Mon Sep 17 00:00:00 2001 From: Timo Ebel Date: Mon, 24 Oct 2022 15:07:56 +0200 Subject: [PATCH] Fixed own deprecated usage of set-output; other warnings should resolve automatically with the release of shivammathur/setup-php#654. --- .github/workflows/check_and_deploy.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/check_and_deploy.yml b/.github/workflows/check_and_deploy.yml index 2f9fcda..4508a18 100644 --- a/.github/workflows/check_and_deploy.yml +++ b/.github/workflows/check_and_deploy.yml @@ -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 @@ -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 @@ -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: @@ -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: @@ -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: