Skip to content

Commit

Permalink
fix: workflows
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitriy Khaustov aka xDimon <[email protected]>
  • Loading branch information
xDimon committed Oct 14, 2024
1 parent 023eddb commit 84595ae
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/clang-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v1
name: checkout
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/compilers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest]
os: [ubuntu-24.04, macos-15]
compiler: [{
"cc": "gcc",
"cxx": "g++"
Expand All @@ -30,7 +30,7 @@ jobs:
"cxx": "clang++"
}]
exclude:
- os: macOS-latest
- os: macos-15
compiler:
cc: gcc
steps:
Expand All @@ -48,7 +48,7 @@ jobs:
run: |
set -e
if [ "$RUNNER_OS" = "macOS" ]; then
if [ "$RUNNER_OS" = "macos-15" ]; then
brew install ninja
else
sudo apt-get update || true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
jobs:
coverage:
name: "codecov"
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: checkout
uses: actions/checkout@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: "Undefined Behavior Sanitizer"
sanitizer: UBSAN
name: "${{ matrix.options.name }}"
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: checkout
uses: actions/checkout@v1
Expand Down

0 comments on commit 84595ae

Please sign in to comment.