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
12 changes: 6 additions & 6 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
cmake-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup
run: |
sudo rm /etc/apt/sources.list.d/microsoft-prod.list
Expand Down Expand Up @@ -36,7 +36,7 @@ jobs:
cmake-linux-with-options:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup
run: |
sudo rm /etc/apt/sources.list.d/microsoft-prod.list
Expand All @@ -63,7 +63,7 @@ jobs:
cmake-win:
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Cache
uses: hendrikmuhs/ccache-action@v1.2
with:
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
cmake-win-dynamic-runtime:
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Cache
uses: hendrikmuhs/ccache-action@v1.2
with:
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
cmake-win-with-options:
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Cache
uses: hendrikmuhs/ccache-action@v1.2
with:
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:
cmake-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup
env:
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/copyrights.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
copyrights:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Check
run: |
./tools/check_copyrights.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coveralls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
coverage:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup
run: |
sudo rm /etc/apt/sources.list.d/microsoft-prod.list
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/devenv-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
tag: [noble, oracular, plucky]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Build CI images
working-directory: dockerfiles
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
docs:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup
env:
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1
Expand All @@ -22,7 +22,7 @@ jobs:
header-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Check
run: |
./tools/check_all_header_docs.sh
2 changes: 1 addition & 1 deletion .github/workflows/filelists.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
filelists:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup
run: |
sudo rm /etc/apt/sources.list.d/microsoft-prod.list
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generated-headers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
filelists:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup
run: |
sudo rm /etc/apt/sources.list.d/microsoft-prod.list
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/headers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
headers:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup
run: |
sudo rm /etc/apt/sources.list.d/microsoft-prod.list
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/includes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
namespaces:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Check
run: |
shopt -s globstar
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-full-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ jobs:
configureflags: --enable-null-as-functions
container: ghcr.io/lballabio/quantlib-devenv:${{ matrix.tag }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Compiler version
run: |
${{ matrix.cc }} --version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-nondefault.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ jobs:
configureflags: --enable-openmp
container: ghcr.io/lballabio/quantlib-devenv:${{ matrix.tag }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Compiler version
run: |
${{ matrix.cc }} --version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:
tests: true
container: ghcr.io/lballabio/quantlib-devenv:${{ matrix.tag }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Cache
uses: hendrikmuhs/ccache-action@v1.2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-nondefault.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- classes: std
configureflags: --enable-std-pointers --disable-std-any --disable-std-optional
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup
env:
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
matrix:
os: [macos-13, macos-14]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup
env:
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/misspell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: sobolevn/misspell-fixer-action@master
- uses: peter-evans/create-pull-request@v7
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msvc-all-configs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
boost_version: 88
vsversion: 2022
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup MSVC++ environment
uses: ilammy/msvc-dev-cmd@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msvc-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msvc-nondefault.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
boost_version: 88
vsversion: 2022
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup MSVC++ environment
uses: ilammy/msvc-dev-cmd@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msvc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
boost_version: 88
vsversion: 2022
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup MSVC++ environment
uses: ilammy/msvc-dev-cmd@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/namespaces.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
namespaces:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Check
run: |
shopt -s globstar
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sanitizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
container: ghcr.io/lballabio/quantlib-devenv:rolling
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Compiler version
run: |
gcc --version
Expand All @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
container: ghcr.io/lballabio/quantlib-devenv:rolling
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Compiler version
run: |
gcc --version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-times.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
check-test-times:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Cache
uses: hendrikmuhs/ccache-action@v1.2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
check:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup
run: |
sudo apt-get update
Expand Down
Loading