Skip to content

Commit

Permalink
Merge 2de2dcb into 4382ee7
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancoisCarouge committed May 21, 2022
2 parents 4382ee7 + 2de2dcb commit c55e09d
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy_documentation_doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Doxygen
uses: mattnotmitt/doxygen-action@v1.9.3
uses: mattnotmitt/doxygen-action@v1.9.2
with:
working-directory: '.'
doxyfile-path: 'documentation/Doxyfile'
- name: Deploy
uses: peaceiris/actions-gh-pages@v3.7.3
uses: peaceiris/actions-gh-pages@v3.8.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./documentation/html
2 changes: 1 addition & 1 deletion .github/workflows/deploy_test_coverage_coveralls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify_code_static_analysis_cppcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify_code_static_analysis_tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify_code_style_format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify_documentation_doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Doxygen
uses: mattnotmitt/doxygen-action@v1.9.3
uses: mattnotmitt/doxygen-action@v1.9.2
with:
working-directory: '.'
doxyfile-path: 'documentation/Doxyfile'
2 changes: 1 addition & 1 deletion .github/workflows/verify_test_memory_valgrind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify_test_sanitizer_address.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify_test_sanitizer_leak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify_test_sanitizer_thread.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Test: Ubuntu 20.04 Clang Trunk"
name: "Test: Ubuntu 22.04 Clang Trunk"

on:
push:
Expand All @@ -8,7 +8,7 @@ on:

jobs:
clang:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -19,7 +19,7 @@ jobs:
sudo apt update
- name: Install
run: |
sudo apt install clang-14 lldb-14 lld-14 libc++-14-dev libc++abi-14-dev
sudo apt install clang-14 lld-14 libc++-14-dev libc++abi-14-dev
( cd /tmp ; mkdir eigen ;
git clone --depth 1 https://gitlab.com/libeigen/eigen.git ;
( cd eigen ;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Test: Ubuntu 20.04 GCC Trunk"
name: "Test: Ubuntu 22.04 GCC Trunk"

on:
push:
Expand All @@ -8,7 +8,7 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit c55e09d

Please sign in to comment.