This is an automated email from the ASF dual-hosted git repository. snazy pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push: new e77a3a7db Fix CI (#2043) e77a3a7db is described below commit e77a3a7db2a87ae14083cf1fdfc3fa2a13b1b9f1 Author: Robert Stupp <sn...@snazy.de> AuthorDate: Mon Jul 14 12:57:06 2025 +0200 Fix CI (#2043) The `store-gradle-cache` job in the `gradle.yaml` GitHub workflow is missing a "checkout", this change adds it to fix CI. --- .github/workflows/gradle.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 9ffc77288..b8f4acca2 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -151,6 +151,7 @@ jobs: - quarkus-tests - integration-tests steps: + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 - name: Set up JDK 21 uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4 with: