Skip to content

Commit

Permalink
Camel test drives
Browse files Browse the repository at this point in the history
  • Loading branch information
jesperancinha committed Jul 15, 2024
1 parent 974e41b commit db857b2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/camel-test-drives-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/camel-test-drives-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 3 additions & 3 deletions .github/workflows/camel-test-drives.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit db857b2

Please sign in to comment.