Compare commits

...

6 Commits

Author SHA1 Message Date
Thomas Merz
f031c1d03e
Merge 8ee8921485d4a0186eb4ca37d9cc4b2236cab24c into 2b4fbfce25902d557b86b003cf48f738129efce4 2025-03-26 06:50:12 +00:00
dirkf
8ee8921485
Fix YAML syntax 2024-06-11 23:12:38 +01:00
dirkf
d478c9a750
Can the CI be triggered? 2024-06-11 22:47:14 +01:00
Thomas Merz
879c8b235f
use suggestion from dirkf
Co-authored-by: dirkf <fieldhouse@gmx.net>
2024-06-11 16:47:08 +02:00
Thomas Merz
a06c20105b
use suggestion from dirkf
Co-authored-by: dirkf <fieldhouse@gmx.net>
2024-06-11 16:46:59 +02:00
Thomas Merz
b4ae41752e
👷 use latest major version for actions/checkout 2023-12-22 14:35:17 +01:00

View File

@ -151,7 +151,10 @@ jobs:
# apt in runner, if needed, may not be up-to-date
sudo apt-get update
- name: Checkout
uses: actions/checkout@v3
# v4+ of the action respect show-progress
uses: actions/checkout@master
with:
show-progress: false
#-------- Python 3 -----
- name: Set up supported Python ${{ matrix.python-version }}
id: setup-python
@ -467,7 +470,10 @@ jobs:
name: Linter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@master
with:
show-progress: false
- name: Set up Python
uses: actions/setup-python@v4
with: