From db857b238bff3d2061c1f560fb38ddebe398ad2a Mon Sep 17 00:00:00 2001 From: jesperancinha Date: Mon, 15 Jul 2024 22:02:51 +0200 Subject: [PATCH] Camel test drives --- .circleci/config.yml | 2 +- .github/workflows/camel-test-drives-merge.yml | 2 +- .github/workflows/camel-test-drives-pull-request.yml | 6 +++--- .github/workflows/camel-test-drives.yml | 6 +++--- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 319fcce..6028870 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,7 +2,7 @@ version: 2.1 jobs: build: docker: - - image: maven:3-eclipse-temurin-21 + - image: eclipse-temurin:21-alpine environment: MAVEN_OPTS: -Xmx3200m diff --git a/.github/workflows/camel-test-drives-merge.yml b/.github/workflows/camel-test-drives-merge.yml index 4b36591..5c01258 100644 --- a/.github/workflows/camel-test-drives-merge.yml +++ b/.github/workflows/camel-test-drives-merge.yml @@ -11,7 +11,7 @@ jobs: steps: - name: Dependabot metadata id: metadata - uses: dependabot/fetch-metadata@v1.1.1 + uses: dependabot/fetch-metadata@v2 with: github-token: "${{ secrets.GITHUB_TOKEN }}" - name: Enable auto-merge for Dependabot PRs diff --git a/.github/workflows/camel-test-drives-pull-request.yml b/.github/workflows/camel-test-drives-pull-request.yml index 5cf9058..a1f87ed 100644 --- a/.github/workflows/camel-test-drives-pull-request.yml +++ b/.github/workflows/camel-test-drives-pull-request.yml @@ -8,12 +8,12 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up JDK 21 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: '21' - distribution: 'temurin' + distribution: 'adopt' - name: Build and Test run: mvn clean install jacoco:prepare-agent package jacoco:report diff --git a/.github/workflows/camel-test-drives.yml b/.github/workflows/camel-test-drives.yml index 33b5235..71fd8d1 100644 --- a/.github/workflows/camel-test-drives.yml +++ b/.github/workflows/camel-test-drives.yml @@ -8,12 +8,12 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up JDK 21 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: '21' - distribution: 'temurin' + distribution: 'adopt' - name: Build and Test run: mvn clean install jacoco:prepare-agent package jacoco:report