Skip to content
Draft
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
8 changes: 4 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: ./gradlew classes
codeql-analysis:
needs: build
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
permissions:
# Needed for SARIF scanning upload.
security-events: write
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
flags: test-${{ matrix.os }}
funTest-no-external-tools:
needs: build
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- name: Checkout Repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
Expand All @@ -118,7 +118,7 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
flags: funTest-no-external-tools
funTest-external-tools:
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- name: Checkout Repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
flags: funTest-external-tools
publication-test:
needs: build
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- name: Checkout Repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ env:
jobs:
metadata:
name: Get Metadata
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
outputs:
version: ${{ steps.get-version.outputs.ORT_VERSION }}
ort-tags: ${{ steps.meta-ort.outputs.tags }}
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
needs:
- metadata
- build
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- name: Download ORT digests
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/native-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions: read-all

jobs:
analyzer-only:
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- name: Checkout Repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
attestations: write
contents: write
id-token: write
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- name: Checkout Repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecard-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions: read-all

jobs:
scorecard-analysis:
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
permissions:
# Needed for SARIF scanning upload.
security-events: write
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:

jobs:
commit-lint:
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- name: Checkout Repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
Expand All @@ -24,7 +24,7 @@ jobs:
with:
configFile: .commitlintrc.yml
code-base-checks:
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- name: Checkout Repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Check copyrights, license headers, and .gitattributes
run: ./gradlew checkCopyrightsInNoticeFile checkLicenseHeaders checkGitAttributes
completions:
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- name: Checkout Repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
Expand All @@ -58,7 +58,7 @@ jobs:
exit 1
fi
build-health:
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- name: Checkout Repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
Expand All @@ -67,7 +67,7 @@ jobs:
- name: Check Build Health
run: ./gradlew buildHealth checkSortDependencies
detekt-issues:
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
permissions:
# Needed for SARIF scanning upload.
security-events: write
Expand All @@ -86,7 +86,7 @@ jobs:
with:
sarif_file: build/reports/detekt/merged.sarif
markdown-links:
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
permissions:
checks: write
contents: read
Expand All @@ -98,7 +98,7 @@ jobs:
with:
fail_level: error
markdownlint:
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- name: Checkout Repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
Expand All @@ -111,7 +111,7 @@ jobs:
npm install -g markdownlint-rule-max-one-sentence-per-line@0.0.2
npx markdownlint-cli2
prettier-website:
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- name: Checkout Repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
Expand All @@ -128,7 +128,7 @@ jobs:
working-directory: website
qodana-scan:
if: ${{ github.event_name == 'pull_request' }}
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
permissions:
# Needed for SARIF scanning upload.
security-events: write
Expand All @@ -147,14 +147,14 @@ jobs:
with:
sarif_file: ${{ runner.temp }}/qodana/results/qodana.sarif.json
renovate-validation:
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- name: Checkout Repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Validate Renovate Config
run: npx -y --package renovate@latest -- renovate-config-validator renovate.json
reuse-tool:
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- name: Checkout Repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/website-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
build:
name: Website Build
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- name: Checkout Repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
Expand Down Expand Up @@ -39,6 +39,6 @@ jobs:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128 # v5.0.0
2 changes: 1 addition & 1 deletion .github/workflows/website-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
test:
name: Website Test
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- name: Checkout Repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
Expand Down
Loading