From 7cf6b325172cae9ee0d4a5a5895b2315f74d0e75 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 18:50:40 +0000 Subject: [PATCH] Update actions/checkout action to v5 --- .github/workflows/pull-requests.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull-requests.yml b/.github/workflows/pull-requests.yml index 8336a91..b82b607 100644 --- a/.github/workflows/pull-requests.yml +++ b/.github/workflows/pull-requests.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out code 🛒 - uses: actions/checkout@v4 + uses: actions/checkout@v5 id: code-checkout - name: Validate composer.json and composer.lock 🎼 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a28c89e..e6b3bdb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Check out code 🛒 - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup PHP 🐫 uses: shivammathur/setup-php@v2 @@ -32,7 +32,7 @@ jobs: needs: [ lint ] steps: - name: Check out code 🛒 - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Build package 🔧 id: build-package