From 4a4b8fc428a5d37b39618d8beaaa897d05088e2b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 30 Sep 2022 21:40:18 +0200 Subject: [PATCH] Bump actions/checkout from 1 to 3 (#671) Bumps [actions/checkout](https://github.com/actions/checkout) from 1 to 3. - [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/v1...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/main.yml | 8 ++++---- .github/workflows/release.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4a338df9..2cb61ced 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,7 +10,7 @@ jobs: name: Run PHPStan runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Install PHP uses: shivammathur/setup-php@master with: @@ -28,7 +28,7 @@ jobs: matrix: php-version: ['8.1', '8.0', '7.4'] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Install PHP uses: shivammathur/setup-php@master with: @@ -51,7 +51,7 @@ jobs: BUILD_REF: ${{ github.sha }} BUILD_VERSION: ${{ github.ref_name }} steps: - - uses: actions/checkout@master + - uses: actions/checkout@v3 - name: Prepare run: | ./.docker/docker.sh prepare @@ -68,7 +68,7 @@ jobs: BUILD_REF: ${{ github.sha }} BUILD_VERSION: dev steps: - - uses: actions/checkout@master + - uses: actions/checkout@v3 - name: Prepare run: | ./.docker/docker.sh prepare diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fec79c65..cd1fc807 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: BUILD_REF: ${{ github.sha }} BUILD_VERSION: ${{ github.ref_name }} steps: - - uses: actions/checkout@master + - uses: actions/checkout@v3 - uses: shivammathur/setup-php@v2 with: php-version: '7.4'