From 429961d8b0ccec37543c01a3d6f7d6f3caa66bdf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Sep 2024 10:36:28 +0000 Subject: [PATCH] Bump actions/checkout from 2 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [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...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/sync-from-template.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sync-from-template.yaml b/.github/workflows/sync-from-template.yaml index 886235c..2ce69da 100644 --- a/.github/workflows/sync-from-template.yaml +++ b/.github/workflows/sync-from-template.yaml @@ -45,7 +45,7 @@ jobs: steps: # Clone the template repository - name: Check out template repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: repository: ${{ env.REPO_TEMPLATE }} token: ${{ github.token }} @@ -59,7 +59,7 @@ jobs: # Clone the target repository. Check out a branch - name: Check out ${{ github.repository }} - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: repository: ${{ github.repository }} token: ${{ github.token }}