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
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:
jobs:
pages:
name: Deploy to GitHub Pages
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: ${{ github.ref_name == github.event.repository.default_branch || (github.event_name == 'release' && github.event.action == 'published') }}
permissions:
contents: write
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ concurrency:

jobs:
pre-commit:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
Expand All @@ -34,7 +34,7 @@ jobs:


check-on-linux:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [pre-commit]
timeout-minutes: 15
strategy:
Expand Down Expand Up @@ -335,7 +335,7 @@ jobs:
run: cmake --build --preset=default --target ccov-all

check-sanitizers:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [pre-commit]
timeout-minutes: 15
strategy:
Expand Down Expand Up @@ -385,7 +385,7 @@ jobs:
run: ctest --preset=default

check-valgrind:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [pre-commit]
timeout-minutes: 15
strategy:
Expand Down Expand Up @@ -453,7 +453,7 @@ jobs:
path: out/valgrind-results.tar.gz

clang-tidy:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [pre-commit]
timeout-minutes: 15

Expand Down Expand Up @@ -502,7 +502,7 @@ jobs:


cppcheck:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [pre-commit]
timeout-minutes: 15

Expand Down Expand Up @@ -551,7 +551,7 @@ jobs:


check-docs:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [pre-commit]
timeout-minutes: 15

Expand Down Expand Up @@ -597,7 +597,7 @@ jobs:


codecov:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [pre-commit]
timeout-minutes: 15

Expand Down Expand Up @@ -667,7 +667,7 @@ jobs:
- clang-tidy
- cppcheck
- codecov
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 2
permissions:
pull-requests: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ permissions:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 15
permissions:
actions: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
RENOVATE_REPOSITORY_CACHE: enabled
image: ghcr.io/renovatebot/renovate:39.42.4@sha256:c5d718e312cdacc0746e37f13c215ff498be28c51e50efd24c070ae29f5b636a
options: --user root
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- run: env | sort

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
jobs:
semantic-release:
name: Semantic Release
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: github.event.workflow_run.conclusion == 'success' && github.repository == 'msclock/cppfront-practice'
permissions:
contents: write
Expand Down
Loading