mirror of
https://github.com/devine-dl/pywidevine.git
synced 2025-12-19 12:32:15 +00:00
Update versions in GitHub Workflows
(I bloody hate github workflows, annoying ahh hell to maintain)
This commit is contained in:
parent
c32dd6a757
commit
b624355764
12
.github/workflows/cd.yml
vendored
12
.github/workflows/cd.yml
vendored
@ -10,21 +10,21 @@ jobs:
|
|||||||
name: Tagged Release
|
name: Tagged Release
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v5
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v6
|
||||||
with:
|
with:
|
||||||
python-version: "3.12"
|
python-version: "3.14"
|
||||||
- name: Install Poetry
|
- name: Install Poetry
|
||||||
uses: abatilo/actions-poetry@v2
|
uses: abatilo/actions-poetry@v3
|
||||||
with:
|
with:
|
||||||
poetry-version: 1.6.1
|
poetry-version: 2.1.3
|
||||||
- name: Install project
|
- name: Install project
|
||||||
run: poetry install --only main
|
run: poetry install --only main
|
||||||
- name: Build project
|
- name: Build project
|
||||||
run: poetry build
|
run: poetry build
|
||||||
- name: Upload wheel
|
- name: Upload wheel
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: Python Wheel
|
name: Python Wheel
|
||||||
path: "dist/*.whl"
|
path: "dist/*.whl"
|
||||||
|
|||||||
20
.github/workflows/ci.yml
vendored
20
.github/workflows/ci.yml
vendored
@ -10,15 +10,15 @@ jobs:
|
|||||||
lint:
|
lint:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v5
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v6
|
||||||
with:
|
with:
|
||||||
python-version: "3.12"
|
python-version: "3.14"
|
||||||
- name: Install poetry
|
- name: Install poetry
|
||||||
uses: abatilo/actions-poetry@v2
|
uses: abatilo/actions-poetry@v3
|
||||||
with:
|
with:
|
||||||
poetry-version: 1.6.1
|
poetry-version: 2.1.3
|
||||||
- name: Install project
|
- name: Install project
|
||||||
run: poetry install --all-extras
|
run: poetry install --all-extras
|
||||||
- name: Run pre-commit which does various checks
|
- name: Run pre-commit which does various checks
|
||||||
@ -27,17 +27,17 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v5
|
||||||
- name: Set up Python ${{ matrix.python-version }}
|
- name: Set up Python ${{ matrix.python-version }}
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v6
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python-version }}
|
python-version: ${{ matrix.python-version }}
|
||||||
- name: Install poetry
|
- name: Install poetry
|
||||||
uses: abatilo/actions-poetry@v2
|
uses: abatilo/actions-poetry@v3
|
||||||
with:
|
with:
|
||||||
poetry-version: 1.6.1
|
poetry-version: 2.1.3
|
||||||
- name: Install project
|
- name: Install project
|
||||||
run: poetry install --all-extras --only main
|
run: poetry install --all-extras --only main
|
||||||
- name: Build project
|
- name: Build project
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user