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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
all:
name: CI success
needs: [unit-tests, publish]
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- name: Success
run: "true"
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ permissions: {}
jobs:
build-and-push-docs:
name: Build documentation and push to cclib.github.io on merge
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions: {}
jobs:
pre-commit:
name: Run prek for pre-commit checks
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- name: Checkout code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

publish-to-testpypi:
name: Publish Python distribution to TestPyPI
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04

# publish on merge to default branch or any tag
if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:

publish-to-pypi:
name: Publish Python distribution to PyPI
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04

# only publish on release/versioned tag pushes
if: startsWith(github.ref, 'refs/tags/v')
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
github-release:
name: >-
Sign the Python distribution with Sigstore and upload them to GitHub Release
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04

# make (draft) release on any tag
if: startsWith(github.ref, 'refs/tags/')
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_and_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

run-tests:
name: Run tests and create distribution packages
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
strategy:
matrix:
pixi-env:
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
name: Test that installation from distribution packages works
needs:
- run-tests
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
strategy:
matrix:
install-method: [wheel, source]
Expand Down
Loading