Merge pull request #2503 from HKUDS/dependabot/github_actions/github-actions-35b2a8182b

Bump the github-actions group with 3 updates
This commit is contained in:
Daniel.y
2025-12-21 19:09:25 +08:00
committed by GitHub
3 changed files with 5 additions and 5 deletions

View File

@@ -31,7 +31,7 @@ jobs:
python-version: '3.11' python-version: '3.11'
- name: Cache pip packages - name: Cache pip packages
uses: actions/cache@v4 uses: actions/cache@v5
with: with:
path: ~/.cache/pip path: ~/.cache/pip
key: ${{ runner.os }}-pip-copilot-${{ hashFiles('**/pyproject.toml') }} key: ${{ runner.os }}-pip-copilot-${{ hashFiles('**/pyproject.toml') }}

View File

@@ -64,7 +64,7 @@ jobs:
python -m build python -m build
- name: Upload distributions - name: Upload distributions
uses: actions/upload-artifact@v5 uses: actions/upload-artifact@v6
with: with:
name: release-dists name: release-dists
path: dist/ path: dist/
@@ -81,7 +81,7 @@ jobs:
steps: steps:
- name: Retrieve release distributions - name: Retrieve release distributions
uses: actions/download-artifact@v6 uses: actions/download-artifact@v7
with: with:
name: release-dists name: release-dists
path: dist/ path: dist/

View File

@@ -24,7 +24,7 @@ jobs:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Cache pip packages - name: Cache pip packages
uses: actions/cache@v4 uses: actions/cache@v5
with: with:
path: ~/.cache/pip path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt', '**/pyproject.toml') }} key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements*.txt', '**/pyproject.toml') }}
@@ -45,7 +45,7 @@ jobs:
- name: Upload test results - name: Upload test results
if: always() if: always()
uses: actions/upload-artifact@v5 uses: actions/upload-artifact@v6
with: with:
name: test-results-py${{ matrix.python-version }} name: test-results-py${{ matrix.python-version }}
path: | path: |