Skip to content
Merged
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
5 changes: 2 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ on: # yamllint disable-line rule:truthy
# │ │ │ │ │
# │ │ │ │ │
# * * * * *
- cron: '16 20 * * 0'
- cron: "16 20 * * 0"

jobs:
analyze:
Expand All @@ -40,8 +40,7 @@ jobs:
# - https://gh.io/using-larger-runners (GitHub.com only)
# Consider using larger runners or machines with greater resources
# for possible analysis time improvements.
runs-on:
${{ (matrix.language == 'swift' && 'macos-14') || 'ubuntu-24.04' }}
runs-on: ${{ (matrix.language == 'swift' && 'macos-14') || 'ubuntu-26.04' }}
permissions:
# required for all workflows
security-events: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ permissions:
jobs:
markdownlint:
name: Markdown Lint
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04

steps:
- name: Checkout repository
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/yamllint.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
---

name: YAML lint

on: # yamllint disable-line rule:truthy
Expand All @@ -19,7 +18,8 @@ jobs:
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7

- name: Install yamllint
run: pip install yamllint
run: |
pip install --only-binary :all: yamllint==1.38.0

- name: Lint YAML files
run: >
Expand Down
Loading