From 122fcd2201a2efc910a35220c4b4db22b7b1366e Mon Sep 17 00:00:00 2001 From: George Gastaldi Date: Mon, 5 Dec 2022 09:35:12 -0300 Subject: [PATCH] Fix for ecosystem-ci (#113) --- .github/workflows/quarkus-snapshot.yaml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/quarkus-snapshot.yaml b/.github/workflows/quarkus-snapshot.yaml index 3e26864..00e279a 100644 --- a/.github/workflows/quarkus-snapshot.yaml +++ b/.github/workflows/quarkus-snapshot.yaml @@ -11,8 +11,7 @@ env: ECOSYSTEM_CI_REPO: quarkusio/quarkus-ecosystem-ci ECOSYSTEM_CI_REPO_FILE: context.yaml JAVA_VERSION: 17 - # Use the branch below to run the ecosystem - ALTERNATIVE: "1.x" + ######################### # Repo specific setting # ######################### @@ -28,21 +27,23 @@ jobs: steps: - name: Install yq - run: sudo add-apt-repository ppa:rmescandon/yq && sudo apt update && sudo apt install yq -y + uses: dcarbone/install-yq-action@v1.0.1 - name: Set up Java - uses: actions/setup-java@v2 + uses: actions/setup-java@v3 with: distribution: temurin java-version: ${{ env.JAVA_VERSION }} - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: path: current-repo + # Build against the 1.x branch. Remove it when the main branch is compatible with the Quarkus main branch + ref: 1.x - name: Checkout Ecosystem - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: repository: ${{ env.ECOSYSTEM_CI_REPO }} path: ecosystem-ci