Skip to content

Commit 83f9285

Browse files
committed
update CI infrastructure
1 parent 52b59fc commit 83f9285

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313

1414
- name: Set up Python 3.8
15-
uses: actions/setup-python@v1
15+
uses: actions/setup-python@v4
1616
with:
1717
python-version: 3.8
1818
- name: Check Version

.github/workflows/static_analysis.yml

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

44
jobs:
55
Cpp:
6-
runs-on: ubuntu-18.04
6+
runs-on: ubuntu-22.04
77
steps:
88
- uses: actions/checkout@v2
99
- name: Formatting
@@ -13,10 +13,10 @@ jobs:
1313
clangFormatVersion: 9
1414

1515
Python:
16-
runs-on: ubuntu-18.04
16+
runs-on: ubuntu-22.04
1717
steps:
1818
- uses: actions/checkout@v2
19-
- uses: actions/setup-python@v2
19+
- uses: actions/setup-python@v4
2020
with:
2121
python-version: 3.8
2222
- name: Install Python packages

.github/workflows/unit_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", 'pypy-2.7', 'pypy-3.6', 'pypy-3.7', 'pypy-3.8']
12+
python: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", 'pypy-2.7', 'pypy-3.6', 'pypy-3.7', 'pypy-3.8']
1313
fail-fast: false
1414

1515
steps:
1616
- uses: actions/checkout@v2
17-
- uses: actions/cache@v1
17+
- uses: actions/cache@v3
1818
with:
1919
path: ~/.cache/pip
2020
key: ${{ runner.os }}-pip
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup environment
2929
run: echo "$HOME/scorep/bin" >> $GITHUB_PATH
3030
- name: set up Python
31-
uses: actions/setup-python@v2
31+
uses: actions/setup-python@v4
3232
with:
3333
python-version: ${{matrix.python}}
3434
architecture: x64

0 commit comments

Comments
 (0)