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