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/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-24.04, macos-15, windows-2025]
rust: [stable, 1.88.0]

name: Check compile errors using Rust ${{ matrix.rust }} on ${{ matrix.os }}
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
embedded-esp-idf-check:
# This checks the `sentry-core` and `sentry` crates on ESP-IDF.
name: Check ESP-IDF compile errors
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- name: Checkout sources
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

codecov:
name: Code Coverage
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
Expand All @@ -53,7 +53,7 @@ jobs:

required:
name: Check required jobs
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
if: ${{ always() }}
# Keep this list in sync with all CI jobs that should be required.
# `codecov` is intentionally excluded from this aggregator.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/danger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ permissions:

jobs:
danger:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: getsentry/github-workflows/danger@26f565c05d0dd49f703d238706b775883037d76b # v3
2 changes: 1 addition & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
jobs:
doc:
name: Build documentation
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
env:
RUSTDOCFLAGS: -Dwarnings

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
jobs:
lint:
name: Run lint checks
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout sources
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ permissions:

jobs:
release:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
name: "Release a new version"
steps:
- name: Get auth token
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-24.04, macos-15, windows-2025]
rust: [stable, 1.88.0]

name: Run tests using Rust ${{ matrix.rust }} on ${{ matrix.os }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
matrix:
rust: [nightly, beta]

runs-on: ubuntu-latest
runs-on: ubuntu-24.04
if: github.repository_owner == 'getsentry'

steps:
Expand All @@ -32,7 +32,7 @@ jobs:

weekly-audit:
name: Audit
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
if: github.repository_owner == 'getsentry'

steps:
Expand Down
Loading