Skip to content

Commit

Permalink
Bump actions/setup-python and actions/checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
alexprengere committed Mar 6, 2024
1 parent 147a010 commit 9c583f9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:

name: ${{ matrix.os }} - ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get history and tags for SCM versioning to work
run: |
git fetch --prune --unshallow
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -42,12 +42,12 @@ jobs:
needs: [test]
name: Build Python packages
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get history and tags for SCM versioning to work
run: |
git fetch --prune --unshallow
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.8"
- name: Install dependencies
Expand All @@ -66,7 +66,7 @@ jobs:
needs: [dist]
name: Twine check
steps:
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.8"
- name: Install dependencies
Expand Down

0 comments on commit 9c583f9

Please sign in to comment.