From 0b4793aae988f1ccdc54d3f11480b1fb516c13aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Bouc=CC=8Cek?= Date: Fri, 25 Oct 2024 10:46:03 +0200 Subject: [PATCH] CI: Update with no behavior change --- .github/workflows/code_analysis.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/code_analysis.yaml b/.github/workflows/code_analysis.yaml index 8ea1bd1..0cf84bb 100644 --- a/.github/workflows/code_analysis.yaml +++ b/.github/workflows/code_analysis.yaml @@ -30,7 +30,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup PHP # see https://github.com/shivammathur/setup-php @@ -42,9 +42,9 @@ jobs: # see https://github.com/actions/cache/blob/main/examples.md#php---composer - name: Get Composer Cache Directory id: composer-cache - run: | - echo "::set-output name=dir::$(composer config cache-files-dir)" - - uses: actions/cache@v2 + run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT + + - uses: actions/cache@v4 with: path: | ${{ steps.composer-cache.outputs.dir }}