Skip to content

Commit

Permalink
CI: update GHA actions used
Browse files Browse the repository at this point in the history
  • Loading branch information
dschwoerer committed Jan 8, 2024
1 parent 5c8d43f commit 3f8759f
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 26 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -55,9 +55,9 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -79,9 +79,9 @@ jobs:
# if: always()

# steps:
# - uses: actions/checkout@v2
# - uses: actions/checkout@v4
# - name: Set up Python
# uses: actions/setup-python@v1
# uses: actions/setup-python@v4
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
Expand All @@ -97,9 +97,9 @@ jobs:
if: always()

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -55,9 +55,9 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -79,9 +79,9 @@ jobs:
# if: always()

# steps:
# - uses: actions/checkout@v2
# - uses: actions/checkout@v4
# - name: Set up Python
# uses: actions/setup-python@v1
# uses: actions/setup-python@v4
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
Expand All @@ -97,9 +97,9 @@ jobs:
if: always()

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
fail-fast: true

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -49,9 +49,9 @@ jobs:
fail-fast: true

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -73,9 +73,9 @@ jobs:
# if: always()

# steps:
# - uses: actions/checkout@v2
# - uses: actions/checkout@v4
# - name: Set up Python
# uses: actions/setup-python@v1
# uses: actions/setup-python@v4
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
Expand All @@ -91,9 +91,9 @@ jobs:
if: always()

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand All @@ -108,9 +108,9 @@ jobs:
needs: [pytest, pytest-min-versions, black]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
Expand Down

0 comments on commit 3f8759f

Please sign in to comment.