Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

steps:
- name: Checkout Undertow EE
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v5
with:
Expand All @@ -46,7 +46,7 @@ jobs:
cache: 'maven'
- name: Build with Maven Java ${{ matrix.java }} - ${{ matrix.os }}
run: mvn -V clean install -U -B -fae ${{ matrix.profile }}
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
if: failure()
with:
name: surefire-reports-${{ matrix.os }}-${{ matrix.java }}-${{ matrix.profile }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/nightly-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout Undertow
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: undertow-io/undertow
ref: '2.4.x'
Expand All @@ -42,7 +42,7 @@ jobs:
run: |
cd ~
find ./.m2/repository -type d -name "*SNAPSHOT" -print0 | xargs -0 tar -czf ~/undertow-maven-repository.tar.gz
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: undertow-maven-repository
path: ~/undertow-maven-repository.tar.gz
Expand All @@ -61,14 +61,14 @@ jobs:

steps:
- name: Checkout Undertow EE
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v5
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: 'maven'
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
name: undertow-maven-repository
path: .
Expand All @@ -78,7 +78,7 @@ jobs:
tar -xzf undertow-maven-repository.tar.gz -C ~
- name: Build with Maven Java ${{ matrix.java }} - ${{ matrix.os }}
run: mvn -V clean install -U -B -fae ${{ matrix.profile }} '-Dversion.io.undertow=${{ needs.snapshot-build.outputs.undertow-version }}'
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
if: failure()
with:
name: surefire-reports-${{ matrix.os }}-${{ matrix.java }}-${{ matrix.profile }}
Expand Down