From 09d4f1e097bd54ddcf8feb60970fb3b8d01d4e29 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Aug 2022 21:54:57 -0400 Subject: [PATCH] chore(deps): bump actions/checkout from 2 to 3 (#31) Bumps [actions/checkout](https://github.com/actions/checkout) from 2 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/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/_internal-install.yaml | 4 ++-- .github/workflows/_internal-integration.yaml | 2 +- .github/workflows/_internal-unit.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/_internal-install.yaml b/.github/workflows/_internal-install.yaml index 9cbaa43..45917c7 100644 --- a/.github/workflows/_internal-install.yaml +++ b/.github/workflows/_internal-install.yaml @@ -27,7 +27,7 @@ jobs: outputs: matrix: ${{ steps.supported-version.outputs.matrix }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ./supported-version id: supported-version - run: echo ${{ steps.supported-version.outputs.matrix }} @@ -38,7 +38,7 @@ jobs: matrix: ${{ fromJSON(needs.compute_matrix.outputs.matrix) }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ./installation-test with: composer_version: ${{ matrix.composer }} diff --git a/.github/workflows/_internal-integration.yaml b/.github/workflows/_internal-integration.yaml index 566c647..84a201f 100644 --- a/.github/workflows/_internal-integration.yaml +++ b/.github/workflows/_internal-integration.yaml @@ -27,7 +27,7 @@ jobs: outputs: matrix: ${{ steps.supported-version.outputs.matrix }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ./supported-version id: supported-version - run: echo ${{ steps.supported-version.outputs.matrix }} diff --git a/.github/workflows/_internal-unit.yaml b/.github/workflows/_internal-unit.yaml index bb3048b..a364736 100644 --- a/.github/workflows/_internal-unit.yaml +++ b/.github/workflows/_internal-unit.yaml @@ -27,7 +27,7 @@ jobs: - 8.1 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ./unit-test with: source_folder: _test/demo-package