From 5ec99bed9d20f92b534a5a8068aee314819a73ca Mon Sep 17 00:00:00 2001 From: Sudhir Mitharwal Date: Tue, 7 Apr 2026 10:25:00 +0530 Subject: [PATCH 1/2] chore(actions): update the actions version --- .github/workflows/release.yml | 6 +++--- .github/workflows/test.yml | 5 ++--- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5e5d379..5800cb7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,16 +2,16 @@ name: New Release on: push: - branches: [ master ] + branches: [master] jobs: release: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: New Release - uses: cycjimmy/semantic-release-action@v4 + uses: cycjimmy/semantic-release-action@v6 id: release # Need an `id` for output variables env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 04a2510..d9c7f56 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,6 @@ on: jobs: tests: - runs-on: ubuntu-latest strategy: fail-fast: true @@ -19,10 +18,10 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ~/.composer/cache/files key: php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }} From e8f9fb7de0fbe62cbbf8d7b9fba44ec02a60fc3e Mon Sep 17 00:00:00 2001 From: Sudhir Mitharwal Date: Tue, 7 Apr 2026 10:27:58 +0530 Subject: [PATCH 2/2] chore(actions): incorrect cache action version --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d9c7f56..0d31286 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ jobs: uses: actions/checkout@v6 - name: Cache dependencies - uses: actions/cache@v6 + uses: actions/cache@v4 with: path: ~/.composer/cache/files key: php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}