Revert
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8db417f..9962184 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml
@@ -12,23 +12,23 @@ runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v3 - name: Mount bazel caches - uses: actions/cache@v4 + uses: actions/cache@v3 with: path: | ~/.cache/bazel-disk-cache key: bazel-cache-${{ hashFiles('**/BUILD.bazel', '**/*.bzl', 'WORKSPACE', 'WORKSPACE.bzlmod') }} restore-keys: bazel-cache- - name: Install JDK 11 - uses: actions/setup-java@v4 + uses: actions/setup-java@v3 with: distribution: "zulu" java-version: "11" - name: Prepare release notes and artifacts - run: .github/workflows/release_prep.sh ${{ github.ref_name }} + run: .github/workflows/release_prep.sh ${{ env.GITHUB_REF_NAME }} - name: Release - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v1 with: prerelease: true # Use GH feature to populate the changelog automatically