From 28c2489d274eed73a8c61ecb1f162ed54b0a537b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Mar 2022 05:39:30 +0000 Subject: [PATCH] Bump actions/checkout from 2 to 3 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] --- .github/workflows/repository.yml | 2 +- .github/workflows/test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/repository.yml b/.github/workflows/repository.yml index fa2ae5e..ca21e7d 100644 --- a/.github/workflows/repository.yml +++ b/.github/workflows/repository.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Sync labels uses: micnncim/action-label-syncer@v1 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7e9007a..6070323 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: matrix: ${{ steps.set-matrix.outputs.matrix }} steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Fetch matrix @@ -46,7 +46,7 @@ jobs: - ${{ fromJson(needs.get-matrix.outputs.matrix) }} steps: - name: "[SETUP] Checkout repository (ref: ${{ matrix.refs }})" - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 ref: ${{ matrix.refs }}