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
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ defaults:
jobs:
release_ref:
name: Resolve release tag
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
outputs:
tag: ${{ steps.release.outputs.tag }}
version: ${{ steps.release.outputs.version }}
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
wheel:
name: Build wheel
needs: release_ref
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
env:
IMPORT_NAME: src_py_lib
PYTHON_VERSION: "3.11"
Expand Down Expand Up @@ -272,7 +272,7 @@ jobs:
github-release:
name: Publish GitHub release assets
needs: [release_ref, validate, wheel]
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
permissions:
contents: write

Expand Down Expand Up @@ -316,7 +316,7 @@ jobs:
pypi:
name: Publish PyPI package
needs: [validate, wheel]
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
permissions:
contents: read
id-token: write
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ defaults:
jobs:
changes:
name: Detect changed paths
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
outputs:
github_actions: ${{ steps.changed_paths.outputs.github_actions }}
markdown: ${{ steps.changed_paths.outputs.markdown }}
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
name: Lint GitHub Actions
needs: changes
if: needs.changes.outputs.github_actions == 'true'
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
env:
ACTIONLINT_VERSION: "1.7.12"

Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
name: Lint Markdown
needs: changes
if: needs.changes.outputs.markdown == 'true'
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
env:
MARKDOWNLINT_CLI2_VERSION: "0.22.1"

Expand All @@ -148,7 +148,7 @@ jobs:
name: Validate Python
needs: changes
if: needs.changes.outputs.python == 'true'
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
env:
IMPORT_NAME: src_py_lib
PYTHON_VERSION: "3.11"
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
name: Build and smoke-test package
needs: changes
if: inputs.build-package && needs.changes.outputs.package == 'true'
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
env:
IMPORT_NAME: src_py_lib
PYTHON_VERSION: "3.11"
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:
name: Validate package
needs: [changes, github_actions, markdown, python, package_build]
if: always()
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04

steps:
- name: Confirm validation results
Expand Down
Loading