summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml20
-rw-r--r--.github/workflows/nightly.yml14
-rw-r--r--.github/workflows/recompile-requirements.yml6
-rw-r--r--.github/workflows/release.yml1
4 files changed, 13 insertions, 28 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 1e0c84bc7..9039bc9a3 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -50,7 +50,7 @@ jobs:
python-version: '3.10'
- uses: actions/setup-node@v4
with:
- node-version: '16.x'
+ node-version: '20.x'
if: "matrix.testenv == 'eslint'"
- name: Set up problem matchers
run: "python scripts/dev/ci/problemmatchers.py ${{ matrix.testenv }} ${{ runner.temp }}"
@@ -144,10 +144,10 @@ jobs:
fail-fast: false
matrix:
include:
- ### PyQt 5.15.2 (Python 3.8)
- - testenv: py38-pyqt5152
+ ### PyQt 5.15.2 (Python 3.9)
+ - testenv: py39-pyqt5152
os: ubuntu-20.04
- python: "3.8"
+ python: "3.9"
### PyQt 5.15 (Python 3.10, with coverage)
# FIXME:qt6
# - testenv: py310-pyqt515-cov
@@ -157,14 +157,14 @@ jobs:
- testenv: py311-pyqt515
os: ubuntu-20.04
python: "3.11"
- ### PyQt 6.2 (Python 3.8)
- - testenv: py38-pyqt62
+ ### PyQt 6.2 (Python 3.9)
+ - testenv: py39-pyqt62
os: ubuntu-20.04
- python: "3.8"
- ### PyQt 6.3 (Python 3.8)
- - testenv: py38-pyqt63
+ python: "3.9"
+ ### PyQt 6.3 (Python 3.9)
+ - testenv: py39-pyqt63
os: ubuntu-20.04
- python: "3.8"
+ python: "3.9"
## PyQt 6.4 (Python 3.9)
- testenv: py39-pyqt64
os: ubuntu-20.04
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml
index d4e106bc2..07d8812b9 100644
--- a/.github/workflows/nightly.yml
+++ b/.github/workflows/nightly.yml
@@ -15,20 +15,6 @@ jobs:
matrix:
include:
- os: macos-12
- toxenv: build-release-qt5
- name: qt5-macos
- - os: windows-2019
- toxenv: build-release-qt5
- name: qt5-windows
- - os: macos-12
- args: --debug
- toxenv: build-release-qt5
- name: qt5-macos-debug
- - os: windows-2019
- args: --debug
- toxenv: build-release-qt5
- name: qt5-windows-debug
- - os: macos-12
toxenv: build-release
name: macos-intel
- os: macos-14
diff --git a/.github/workflows/recompile-requirements.yml b/.github/workflows/recompile-requirements.yml
index 6d42c3137..5310336c8 100644
--- a/.github/workflows/recompile-requirements.yml
+++ b/.github/workflows/recompile-requirements.yml
@@ -21,10 +21,10 @@ jobs:
- uses: actions/checkout@v4
with:
persist-credentials: false
- - name: Set up Python 3.8
+ - name: Set up Python 3.9
uses: actions/setup-python@v5
with:
- python-version: '3.8'
+ python-version: '3.9'
- name: Recompile requirements
run: "python3 scripts/dev/recompile_requirements.py ${{ github.event.input.environments }}"
id: requirements
@@ -41,7 +41,7 @@ jobs:
- name: Run qutebrowser smoke test
run: "xvfb-run .venv/bin/python3 -m qutebrowser --no-err-windows --nowindow --temp-basedir about:blank ':later 500 quit'"
- name: Create pull request
- uses: peter-evans/create-pull-request@v6
+ uses: peter-evans/create-pull-request@v7
with:
committer: qutebrowser bot <bot@qutebrowser.org>
author: qutebrowser bot <bot@qutebrowser.org>
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 826970384..e7eab6371 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -19,7 +19,6 @@ on:
default: '3.12'
type: choice
options:
- - '3.8'
- '3.9'
- '3.10'
- '3.11'