Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade github actions to latest versions #163

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/ci-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ jobs:
matrix: ${{ steps.set-itest-matrix.outputs.matrix }}
steps:
- name: Set up JDK 17
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Build Camel Quarkus
if: github.ref == 'refs/heads/camel-quarkus-main' || github.base_ref == 'camel-quarkus-main'
run: |
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
run: |
tar -czf ${{ runner.temp }}/maven-repo.tgz -C ~ .m2/repository
- name: Persist Maven Repo
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: maven-repo
path: ${{ runner.temp }}/maven-repo.tgz
Expand All @@ -111,14 +111,14 @@ jobs:
matrix: ${{ fromJson(needs.initial-mvn-install.outputs.matrix) }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Download Maven Repo
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: maven-repo
path: ..
Expand Down Expand Up @@ -170,14 +170,14 @@ jobs:
os: ['windows-latest']
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Download Maven Repo
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: maven-repo
path: ..
Expand Down