This commit is contained in:
Thomas Merz 2024-12-30 16:36:55 +08:00 committed by GitHub
commit ba57feaf0b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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: