Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,16 @@ jobs:
# Full history and tags: hatch-vcs derives the version from git state, so a
# shallow clone would build the wrong number rather than fail.
- name: Check out source repository
uses: actions/checkout@v7
uses: actions/checkout@v7.0.1
with:
persist-credentials: false
fetch-depth: 0
fetch-tags: true
ref: ${{ inputs.ref || github.ref }}
- name: Set up Python
uses: actions/setup-python@v7
uses: actions/setup-python@v7.0.0
with:
python-version: "3.13"
python-version: "3.13.15"
- name: Install dependencies
# renovate: datasource=pypi depName=hatch
run: pip install hatch==1.18.0
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
# Upload artifacts for later use
- name: Upload Artifacts
if: matrix.reqstool-source == 'pypi'
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v7.0.1
with:
name: ${{ inputs.artifact-name || 'dist' }}
path: dist/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out source repository
uses: actions/checkout@v7
uses: actions/checkout@v7.0.1
- name: Set up Python
uses: actions/setup-python@v7
uses: actions/setup-python@v7.0.0
with:
python-version: "3.13"
python-version: "3.13.15"
- name: Install pip package(s)
# renovate: datasource=pypi depName=hatch
run: pip install hatch==1.18.0
Expand Down
Loading