github action now builds with python 3.9 instead of 3.8
This commit is contained in:
parent
d4a7d8c0c0
commit
b6c351dd0b
1 changed files with 4 additions and 1 deletions
5
.github/workflows/complib-package.yml
vendored
5
.github/workflows/complib-package.yml
vendored
|
@ -7,7 +7,7 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-complib-deb:
|
build-complib-deb:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-22.04
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
packages: write
|
packages: write
|
||||||
|
@ -16,6 +16,9 @@ jobs:
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
- uses: actions/setup-python@v4
|
||||||
|
with:
|
||||||
|
python-version: "3.9"
|
||||||
- name: Bump version number
|
- name: Bump version number
|
||||||
uses: paulhatch/semantic-version@v4.0.2
|
uses: paulhatch/semantic-version@v4.0.2
|
||||||
id: next_semantic_version
|
id: next_semantic_version
|
||||||
|
|
Reference in a new issue