Skip to content

Commit 92dd092

Browse files
committed
[CI] update actions and runner images
1 parent 80fddc1 commit 92dd092

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

.github/workflows/documentation.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ on:
77

88
jobs:
99
deploy-docs:
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-22.04
1111

1212
steps:
1313
# Checks-out the repository under $GITHUB_WORKSPACE
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v5
1515

1616
# Cache the doxygen executable, lcov
17-
- uses: actions/cache@v3
17+
- uses: actions/cache@v4
1818
id: cache-tools
1919
with:
2020
path: |
@@ -47,7 +47,7 @@ jobs:
4747
# Install Python
4848
- uses: actions/setup-python@v4
4949
with:
50-
python-version: '3.9.6'
50+
python-version: '3.9'
5151

5252
# Create the `gh-pages` branch if it doesn't exist already, check it out,
5353
# and copy it to /tmp/staging.
@@ -64,8 +64,6 @@ jobs:
6464
- name: Generate documentation
6565
run: ./scripts/ci/gen-docs.sh /tmp/staging
6666
env:
67-
CC: gcc-10
68-
CXX: g++-10
6967
CMAKE_PREFIX_PATH: /tmp/gtest
7068

7169
# Commit the new documentation, squash the commits, and push it to GitHub

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push]
44

55
jobs:
66
build-and-test-linux:
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-22.04
88
strategy:
99
matrix:
1010
col-counts: ['-DLADEL_SIMPLE_COL_COUNTS=On',
@@ -16,7 +16,7 @@ jobs:
1616
float: ['-DLADEL_SINGLE_PRECISION=On',
1717
'-DLADEL_SINGLE_PRECISION=Off']
1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v5
2020
- name: Install Google Test
2121
shell: bash
2222
run: ./scripts/install-gtest.sh Debug
@@ -47,7 +47,7 @@ jobs:
4747
float: ['-DLADEL_SINGLE_PRECISION=On',
4848
'-DLADEL_SINGLE_PRECISION=Off']
4949
steps:
50-
- uses: actions/checkout@v3
50+
- uses: actions/checkout@v5
5151
- name: Install Google Test
5252
shell: powershell
5353
run: ./scripts/install-gtest.ps1 Debug

0 commit comments

Comments
 (0)