From 16bac3bfbc17bfaa8791c2e1514f23042156b939 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 29 Sep 2022 19:32:13 +0000 Subject: [PATCH] Update actions/checkout action to v3 --- .github/workflows/repo.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/repo.yml b/.github/workflows/repo.yml index b211d8b..dc16515 100644 --- a/.github/workflows/repo.yml +++ b/.github/workflows/repo.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-20.04 if: github.event_name == 'pull_request' || github.ref != 'refs/heads/main' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/setup-java@v2 with: distribution: 'temurin' # See 'Supported distributions' for available options @@ -27,13 +27,13 @@ jobs: runs-on: ubuntu-20.04 if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/setup-java@v2 with: distribution: 'temurin' # See 'Supported distributions' for available options java-version: '18' - run: rm -rf .git/ # delete .git here to ignore the parent git repo and only care about plugin-repo - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: ref: plugin-repo path: ci-repo