Skip to content

Commit 74e8c68

Browse files
authored
build: modernized ci (#576)
1 parent ad3d9cc commit 74e8c68

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111

1212
runs-on: ${{ matrix.platform }}
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- name: Get history and tags for SCM versioning to work
1616
run: |
1717
git fetch --prune --unshallow
1818
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
1919
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v4
20+
uses: actions/setup-python@v5
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
- name: Install dependencies

.github/workflows/codacy-coverage-reporter.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313

1414
runs-on: ${{ matrix.platform }}
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Get history and tags for SCM versioning to work
1818
run: |
1919
git fetch --prune --unshallow
2020
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
2121
- name: Set up Python ${{ matrix.python-version }}
22-
uses: actions/setup-python@v4
22+
uses: actions/setup-python@v5
2323
with:
2424
python-version: ${{ matrix.python-version }}
2525
- name: Install dependencies

.github/workflows/flake8.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
name: Lint
1111
steps:
1212
- name: Check out source repository
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414
- name: Set up Python environment
15-
uses: actions/setup-python@v4
15+
uses: actions/setup-python@v5
1616
with:
1717
python-version: "3.8"
1818
- name: flake8 Lint

0 commit comments

Comments
 (0)