Skip to content

Commit

Permalink
Fix pipeline deprecation messages
Browse files Browse the repository at this point in the history
  • Loading branch information
hacksch authored Mar 13, 2024
1 parent b0202ab commit 2bae5d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v4
- id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- uses: actions/cache@v1
- uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
Expand All @@ -25,7 +25,7 @@ jobs:

- name: "Determine tag"
id: "determine-tag"
run: "echo \"::set-output name=tag::${GITHUB_REF#refs/tags/}\""
run: "echo \"name=tag=${GITHUB_REF#refs/tags/}\" >> $GITHUB_OUTPUT"

- name: Install TYPO3 Tailor Extension
run: composer global require typo3/tailor --prefer-dist --no-progress --no-suggest
Expand Down

0 comments on commit 2bae5d5

Please sign in to comment.