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/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
REQ_CONCURRENT: ${{ inputs.req-concurrent }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand All @@ -127,7 +127,7 @@ jobs:

- name: Download context artifact
if: ${{ inputs.artifact-name != '' }}
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: ${{ inputs.artifact-name }}
path: ${{ inputs.context }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/gradle-build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
steps:
- name: Filter changed paths
id: filter
uses: dorny/paths-filter@v3
uses: dorny/paths-filter@v4
with:
filters: ${{ inputs.paths-filters }}

Expand All @@ -117,7 +117,7 @@ jobs:
RESOLVED_GRADLE_TASK: ${{ inputs.gradle-task != '' && inputs.gradle-task || (inputs.run-tests && 'build test' || 'build') }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Toolchain info
shell: bash
Expand Down Expand Up @@ -156,7 +156,7 @@ jobs:

- name: Upload test reports
if: ${{ always() && inputs.run-tests }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: test-reports-${{ matrix.os }}-jdk${{ inputs.java-version }}
path: |
Expand All @@ -176,7 +176,7 @@ jobs:
contents: read
steps:
- name: Download all test reports
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
path: artifacts
pattern: test-reports-*
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gradle-docker-context.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
GRADLE_OPTS: "-Dorg.gradle.parallel=true -Dorg.gradle.caching=true -Dorg.gradle.welcome=never"
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Validate Gradle wrapper
if: ${{ inputs.validate-wrapper }}
Expand All @@ -111,7 +111,7 @@ jobs:
fi

- name: Upload context artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ inputs.artifact-name }}
path: ${{ inputs.context-path }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gradle-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
GRADLE_OPTS: "-Dorg.gradle.parallel=true -Dorg.gradle.caching=true -Dorg.gradle.welcome=never"
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Toolchain info
shell: bash
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:

- name: Upload build reports
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: publish-reports-jdk${{ inputs.java-version }}
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
steps:
- name: Filter changed paths
id: filter
uses: dorny/paths-filter@v3
uses: dorny/paths-filter@v4
with:
filters: ${{ inputs.paths-filters }}

Expand All @@ -82,10 +82,10 @@ jobs:
runs-on: ${{ inputs.runs-on }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Run markdownlint-cli2
uses: DavidAnson/markdownlint-cli2-action@v18
uses: DavidAnson/markdownlint-cli2-action@v24
with:
globs: ${{ inputs.glob }}
config: ${{ inputs.config-file }}
Expand All @@ -97,7 +97,7 @@ jobs:
runs-on: ${{ inputs.runs-on }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Lychee link checker
uses: lycheeverse/lychee-action@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
name: Conventional PR title
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
- uses: amannn/action-semantic-pull-request@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand All @@ -60,9 +60,9 @@ jobs:
- uses: actions/checkout@v7
with:
fetch-depth: 0
- uses: actions/setup-node@v5
- uses: actions/setup-node@v7
with:
node-version: 20
node-version: 24
- name: Install commitlint
run: npm install --no-save @commitlint/cli @commitlint/config-conventional
- name: Lint commits in range
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sbom-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,15 +97,15 @@ jobs:
# scan and checking out would just cost time.
- name: Checkout
if: ${{ inputs.artifact-name == '' }}
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Prepare SBOM directory
shell: bash
run: mkdir -p sbom

- name: Download SBOM artifact
if: ${{ inputs.artifact-name != '' }}
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: ${{ inputs.artifact-name }}
path: sbom
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:

- name: Upload SBOM artifact
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: sbom-${{ inputs.project-name }}-${{ inputs.project-version }}
path: sbom/**
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/security-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,13 @@ jobs:
steps:
- name: Checkout
if: ${{ inputs.scan-type != 'image' && inputs.artifact-name == '' }}
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ inputs.ref }}

- name: Download artifact to scan
if: ${{ inputs.artifact-name != '' }}
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: ${{ inputs.artifact-name }}
path: ${{ inputs.artifact-path }}
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:

- name: Upload SARIF artifact
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: trivy-sarif-${{ inputs.scan-type }}
path: trivy-results.sarif
Expand Down
Loading