diff --git a/.github/workflows/cgl.yaml b/.github/workflows/cgl.yaml index ce4e11b4..c72d7e87 100644 --- a/.github/workflows/cgl.yaml +++ b/.github/workflows/cgl.yaml @@ -11,7 +11,7 @@ jobs: cgl: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 58506a7a..610162e9 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -10,7 +10,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/') runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 @@ -51,7 +51,7 @@ jobs: runs-on: ubuntu-20.04 needs: phar steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 @@ -67,6 +67,8 @@ jobs: uses: actions/download-artifact@v2 with: name: phar + - name: Make PHAR executable + run: chmod +x .build/cache-warmup.phar # Generate metadata - name: Generate image metadata @@ -117,6 +119,8 @@ jobs: uses: actions/download-artifact@v2 with: name: phar + - name: Make PHAR executable + run: chmod +x .build/cache-warmup.phar # Create release - name: Create release diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 2624bc26..91836f65 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -24,7 +24,7 @@ jobs: - php-version: "8.1" coverage: true steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 @@ -42,7 +42,7 @@ jobs: run: | echo "::set-output name=dir::$(composer config cache-files-dir)" - name: Define Composer cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ steps.composer-cache.outputs.dir }} key: tests-php-${{ matrix.php-version }} @@ -77,7 +77,7 @@ jobs: ${{ github.workspace }}/.build/coverage/clover.xml:clover if: ${{ matrix.coverage }} - name: codecov report - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v3 with: directory: .build/coverage fail_ci_if_error: true @@ -98,7 +98,7 @@ jobs: - "8.0" - "8.1" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 @@ -116,7 +116,7 @@ jobs: run: | echo "::set-output name=dir::$(composer config cache-files-dir)" - name: Define Composer cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ steps.composer-cache.outputs.dir }} key: tests-lowest-php-${{ matrix.php-version }}