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
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 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- if: matrix.language == 'cpp'
name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cppcmake-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
MACOSX_DEPLOYMENT_TARGET: 10.13
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

# Uninstall Mono, which is included by default in GitHub-hosted macOS runners,
# as it interferes with referencing our own compiled SQLite libraries.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cppcmake-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
os: [ubuntu-22.04, ubuntu-22.04-arm]
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install and cache dependencies
uses: awalsh128/cache-apt-pkgs-action@v1.6.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cppcmake-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
OPENSSL_VERSION: 1.1.1.2100
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cppcmake-windows_on_arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
GH_TOKEN: ${{ github.token }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cppcmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
outputs:
skip: ${{ steps.set-skippable.outputs.skippable || 'false' }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Check and set skippable
id: set-skippable
Expand Down
Loading