From c25b91450bf7dfc4d2199e0c72f4a2e9aa81a1f8 Mon Sep 17 00:00:00 2001 From: Noah Santschi-Cooney Date: Thu, 27 Jul 2023 13:11:54 +0100 Subject: [PATCH] chore: bump workflow versions --- .github/workflows/ci.yml | 5 +++-- .github/workflows/pr-auditor.yml | 1 - .github/workflows/release.yml | 7 ++++--- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d6dad88..2845df2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,10 +6,11 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-java@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-java@v3 with: java-version: '8' distribution: 'adopt' + cache: 'gradle' - name: Test run: ./gradlew test \ No newline at end of file diff --git a/.github/workflows/pr-auditor.yml b/.github/workflows/pr-auditor.yml index bdc06f3..72776ec 100644 --- a/.github/workflows/pr-auditor.yml +++ b/.github/workflows/pr-auditor.yml @@ -13,7 +13,6 @@ jobs: repository: 'sourcegraph/pr-auditor' - uses: actions/setup-go@v4 with: { go-version: '1.20' } - - run: './check-pr.sh' env: GITHUB_EVENT_PATH: ${{ env.GITHUB_EVENT_PATH }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5a12ef7..67a5ac0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,14 +7,15 @@ jobs: publish: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Get tag id: tag - run: echo "::set-output name=version::${GITHUB_REF/refs\/tags\/v/}" - - uses: actions/setup-java@v2 + run: echo "version=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_OUTPUT + - uses: actions/setup-java@v3 with: java-version: '8' distribution: 'adopt' + cache: 'gradle' - name: Publish ${{ github.ref }} run: ./gradlew -Pversion=${{ steps.tag.outputs.version }} publish env: