Skip to content
Closed
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
24 changes: 12 additions & 12 deletions .github/workflows/ci-actions-incremental.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ jobs:
run: |
echo "GE_TAGS=jdk-17" >> "$GITHUB_ENV"
echo "GE_CUSTOM_VALUES=gh-job-name=Initial JDK 17 Build" >> "$GITHUB_ENV"
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
# this is important for GIB to work
fetch-depth: 0
Expand Down Expand Up @@ -379,7 +379,7 @@ jobs:
run_tcks: ${{ steps.calc-run-flags.outputs.run_tcks }}
steps:
- uses: runs-on/action@v2
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Calculate matrix from native-tests.json
id: calc-native-matrix
run: |
Expand Down Expand Up @@ -455,7 +455,7 @@ jobs:
- name: Support longpaths on Windows
if: startsWith(matrix.java.os-name, 'windows')
run: git config --global core.longpaths true
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
# this is important for GIB to work
fetch-depth: 0
Expand Down Expand Up @@ -622,7 +622,7 @@ jobs:
- name: Support longpaths on Windows
if: startsWith(matrix.java.os-name, 'windows')
run: git config --global core.longpaths true
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
# this is important for GIB to work
fetch-depth: 0
Expand Down Expand Up @@ -734,7 +734,7 @@ jobs:
- name: Support longpaths on Windows
if: startsWith(matrix.java.os-name, 'windows')
run: git config --global core.longpaths true
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Restore Maven Repository
uses: actions/cache/restore@v4
with:
Expand Down Expand Up @@ -833,7 +833,7 @@ jobs:
- name: Support longpaths on Windows
if: startsWith(matrix.java.os-name, 'windows')
run: git config --global core.longpaths true
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Restore Maven Repository
uses: actions/cache/restore@v4
with:
Expand Down Expand Up @@ -936,7 +936,7 @@ jobs:
- name: Support longpaths on Windows
if: startsWith(matrix.java.os-name, 'windows')
run: git config --global core.longpaths true
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Restore Maven Repository
uses: actions/cache/restore@v4
with:
Expand Down Expand Up @@ -1024,7 +1024,7 @@ jobs:
run: |
echo "GE_TAGS=jdk-${{matrix.java.name}}" >> "$GITHUB_ENV"
echo "GE_CUSTOM_VALUES=gh-job-name=Quickstarts Compilation - JDK ${{matrix.java.name}}" >> "$GITHUB_ENV"
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Restore Maven Repository
uses: actions/cache/restore@v4
with:
Expand Down Expand Up @@ -1122,7 +1122,7 @@ jobs:
run: |
echo "GE_TAGS=jdk-${{matrix.java.name}}" >> "$GITHUB_ENV"
echo "GE_CUSTOM_VALUES=gh-job-name=Platform Tests - JDK ${{matrix.java.name}}" >> "$GITHUB_ENV"
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Restore Maven Repository
uses: actions/cache/restore@v4
with:
Expand Down Expand Up @@ -1215,7 +1215,7 @@ jobs:
category=$(echo -n '${{matrix.category}}' | tr '[:upper:]' '[:lower:]' | tr -c '[:alnum:]-' '-' | sed -E 's/-+/-/g')
echo "GE_TAGS=virtual-thread-native-${category}" >> "$GITHUB_ENV"
echo "GE_CUSTOM_VALUES=gh-job-name=Native Tests - Virtual Thread - ${{matrix.category}}" >> "$GITHUB_ENV"
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Restore Maven Repository
uses: actions/cache/restore@v4
with:
Expand Down Expand Up @@ -1291,7 +1291,7 @@ jobs:
run: |
echo "GE_TAGS=jdk-17" >> "$GITHUB_ENV"
echo "GE_CUSTOM_VALUES=gh-job-name=MicroProfile TCKs Tests" >> "$GITHUB_ENV"
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
# this is important for GIB to work
fetch-depth: 0
Expand Down Expand Up @@ -1393,7 +1393,7 @@ jobs:
- name: Support longpaths on Windows
if: startsWith(matrix.os-name, 'windows')
run: git config --global core.longpaths true
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Reclaim Disk Space
run: .github/ci-prerequisites.sh
if: ${{ !startsWith(matrix.os-name, 'windows') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-istio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
if: github.repository == 'quarkusio/quarkus' || github.event_name == 'workflow_dispatch'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
kubernetes: [v1.20.1]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Get SHA
id: quarkus-sha
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-kubernetes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
if: "github.repository == 'quarkusio/quarkus' || github.event_name == 'workflow_dispatch'"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
kubernetes: [v1.33.2]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Get SHA
id: quarkus-sha
run: |
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
knative: [v1.18.1]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Get SHA
id: quarkus-sha
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-openshift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
if: "github.repository == 'quarkusio/quarkus' || github.event_name == 'workflow_dispatch'"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
openshift: [v3.11.0]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Get SHA
id: quarkus-sha
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 1
ref: main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
env:
MAVEN_OPTS: -Xmx6g -XX:MaxMetaspaceSize=2g
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: main
- name: Get SHA
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doc-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
# Skip main in forks
if: github.repository == 'quarkusio/quarkus' || !endsWith(github.ref, '/main')
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/jdk-early-access-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
run: |
ss -ln
sudo service mysql stop || true
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ github.event_name == 'workflow_dispatch' && github.event.ref || 'main' }}
- name: Get SHA
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/native-it-selected-graalvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
run: |
echo "GE_TAGS=jdk-17" >> "$GITHUB_ENV"
echo "GE_CUSTOM_VALUES=gh-job-name=Initial JDK 17 Build" >> "$GITHUB_ENV"
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ inputs.BRANCH }}
# this is important for GIB to work
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
native_matrix: ${{ steps.calc-native-matrix.outputs.matrix }}
virtual_threads_matrix: ${{ steps.calc-virtual-threads-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Calculate matrix from native-tests.json
id: calc-native-matrix
run: |
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
category=$(echo -n '${{matrix.category}}' | tr '[:upper:]' '[:lower:]' | tr -c '[:alnum:]-' '-' | sed -E 's/-+/-/g')
echo "GE_TAGS=virtual-thread-native-${category}" >> "$GITHUB_ENV"
echo "GE_CUSTOM_VALUES=gh-job-name=Native Tests - Virtual Thread - ${{matrix.category}}" >> "$GITHUB_ENV"
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Restore Maven Repository
uses: actions/cache/restore@v4
with:
Expand Down Expand Up @@ -316,7 +316,7 @@ jobs:
category=$(echo -n '${{matrix.category}}' | tr '[:upper:]' '[:lower:]' | tr -c '[:alnum:]-' '-' | sed -E 's/-+/-/g')
echo "GE_TAGS=native-${category}" >> "$GITHUB_ENV"
echo "GE_CUSTOM_VALUES=gh-job-name=Native Tests - ${{matrix.category}}" >> "$GITHUB_ENV"
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Reclaim Disk Space
run: .github/ci-prerequisites.sh
- name: Set up JDK 17
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/owasp-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 1
ref: main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/podman-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
gib_args: ${{ steps.get-gib-args.outputs.gib_args }}
gib_impacted: ${{ steps.get-gib-impacted.outputs.impacted_modules }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Add quarkusio remote
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/populate-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
with:
distribution: temurin
java-version: 17
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Cache Maven Repository
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
pull-requests: write
if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
repository: quarkusio/quarkusio.github.io
fetch-depth: 5000
fetch-tags: false
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
repository: quarkusio/quarkus
path: quarkus-main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quarkus-github-bot-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: "quarkus-github-bot.yml validation"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: install yamllint
shell: bash
run: sudo apt-get install -y yamllint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
MAVEN_OPTS: -Xmx2560m
JBANG_REPO: $HOME/release/repository
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: main
- name: Get SHA
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
if: github.repository == 'quarkusio/quarkus'

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 17
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
pull-requests: read
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Vale Linter
continue-on-error: true
uses: errata-ai/vale-action@reviewdog
Expand Down
Loading