Skip to content

Commit a67701b

Browse files
authored
Merge pull request #3 from python-project-templates/dependabot/github_actions/actions/upload-artifact-4
Bump actions/upload-artifact from 3 to 4
2 parents fd66319 + 0544301 commit a67701b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
if: ${{ matrix.os == 'ubuntu-latest' }}
6464

6565
- name: Upload test results (Python)
66-
uses: actions/upload-artifact@v3
66+
uses: actions/upload-artifact@v4
6767
with:
6868
name: pytest-results-${{ matrix.os }}-${{ matrix.python-version }}
6969
path: junit.xml

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535
run: make dist-py
3636
if: ${{ matrix.os == 'ubuntu-latest' }}
3737

38-
- uses: actions/upload-artifact@v3
38+
- uses: actions/upload-artifact@v4
3939
with:
4040
path: ./dist/*.tar.gz
4141
if: ${{ matrix.os == 'ubuntu-latest' }}
4242

43-
- uses: actions/upload-artifact@v3
43+
- uses: actions/upload-artifact@v4
4444
with:
4545
path: ./dist/*.whl

0 commit comments

Comments
 (0)