From edfb6408c4cb989d1a2ae10b88d056af3f397887 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Jun 2024 02:31:42 +0000 Subject: [PATCH] Bump actions/checkout from 4.1.1 to 4.1.6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/b4ffde65f46336ab88eb53be808477a3936bae11...a5ac7e51b41094c92402da3b24376905380afc29) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 0b726ba..bd58871 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -15,7 +15,7 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #4.1.1 + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 #4.1.6 - name: Build PHP container run: docker build --build-arg "PHP_VERSION=8.2" -t php --file docker/Dockerfile docker/ @@ -41,7 +41,7 @@ jobs: php-version: ["7.2", "7.4", "8.0", "8.1", "8.2"] name: PHP v${{ matrix.php-version }} steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #4.1.1 + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 #4.1.6 - name: Build PHP container run: docker build --build-arg "PHP_VERSION=${{ matrix.php-version }}" -t php --file docker/Dockerfile docker/