Skip to content

Commit 5b50add

Browse files
authored
Merge pull request #244 from django-commons/dependabot/github_actions/actions/upload-artifact-5
⬆ Bump actions/upload-artifact from 4 to 5
2 parents f82cdaf + ef3b032 commit 5b50add

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
- name: Build the binary wheel and a source tarball
7373
run: just build
7474
- name: Store the distribution packages
75-
uses: actions/upload-artifact@v4
75+
uses: actions/upload-artifact@v5
7676
with:
7777
name: python-package-distributions
7878
path: dist/

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
4848
# format to the repository Actions tab.
4949
- name: "Upload artifact"
50-
uses: actions/upload-artifact@v4
50+
uses: actions/upload-artifact@v5
5151
with:
5252
name: SARIF file
5353
path: results.sarif

.github/workflows/test.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
just test ./tests/verify_environment.py
122122
just test-all
123123
- name: Store coverage files
124-
uses: actions/upload-artifact@v4
124+
uses: actions/upload-artifact@v5
125125
with:
126126
name: ${{ env.COVERAGE_FILE }}
127127
path: ${{ env.COVERAGE_FILE }}
@@ -184,7 +184,7 @@ jobs:
184184
just test-all
185185
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
186186
- name: Store coverage files
187-
uses: actions/upload-artifact@v4
187+
uses: actions/upload-artifact@v5
188188
with:
189189
name: ${{ env.COVERAGE_FILE }}
190190
path: ${{ env.COVERAGE_FILE }}
@@ -245,7 +245,7 @@ jobs:
245245
just test ./tests/verify_environment.py
246246
just test-all
247247
- name: Store coverage files
248-
uses: actions/upload-artifact@v4
248+
uses: actions/upload-artifact@v5
249249
with:
250250
name: ${{ env.COVERAGE_FILE }}
251251
path: ${{ env.COVERAGE_FILE }}
@@ -325,7 +325,7 @@ jobs:
325325
just test ./tests/verify_environment.py
326326
just test-all --group psycopg3
327327
- name: Store coverage files
328-
uses: actions/upload-artifact@v4
328+
uses: actions/upload-artifact@v5
329329
with:
330330
name: ${{ env.COVERAGE_FILE }}
331331
path: ${{ env.COVERAGE_FILE }}
@@ -388,7 +388,7 @@ jobs:
388388
pytest --cov-append ./tests/shellcompletion/test_shell_resolution.py::test_get_win_shell_failure || exit 1
389389
390390
- name: Store coverage files
391-
uses: actions/upload-artifact@v4
391+
uses: actions/upload-artifact@v5
392392
with:
393393
name: ${{ env.COVERAGE_FILE }}
394394
path: ${{ env.COVERAGE_FILE }}
@@ -453,7 +453,7 @@ jobs:
453453
shell: fish {0}
454454

455455
- name: Store coverage files
456-
uses: actions/upload-artifact@v4
456+
uses: actions/upload-artifact@v5
457457
with:
458458
name: ${{ env.COVERAGE_FILE }}
459459
path: ${{ env.COVERAGE_FILE }}
@@ -525,7 +525,7 @@ jobs:
525525
just test-zsh || exit 1
526526
527527
- name: Store coverage files
528-
uses: actions/upload-artifact@v4
528+
uses: actions/upload-artifact@v5
529529
with:
530530
name: ${{ env.COVERAGE_FILE }}
531531
path: ${{ env.COVERAGE_FILE }}
@@ -587,7 +587,7 @@ jobs:
587587
just test-bash || exit 1
588588
589589
- name: Store coverage files
590-
uses: actions/upload-artifact@v4
590+
uses: actions/upload-artifact@v5
591591
with:
592592
name: ${{ env.COVERAGE_FILE }}
593593
path: ${{ env.COVERAGE_FILE }}
@@ -657,7 +657,7 @@ jobs:
657657
just test-fish || exit 1
658658
659659
- name: Store coverage files
660-
uses: actions/upload-artifact@v4
660+
uses: actions/upload-artifact@v5
661661
with:
662662
name: ${{ env.COVERAGE_FILE }}
663663
path: ${{ env.COVERAGE_FILE }}
@@ -732,7 +732,7 @@ jobs:
732732
pytest --cov-append ./tests/shellcompletion/test_shell_resolution.py::test_get_win_shell_failure || exit 1
733733
shell: cmd
734734
- name: Store coverage files
735-
uses: actions/upload-artifact@v4
735+
uses: actions/upload-artifact@v5
736736
with:
737737
name: ${{ env.COVERAGE_FILE }}
738738
path: ${{ env.COVERAGE_FILE }}
@@ -807,7 +807,7 @@ jobs:
807807
pytest --cov-append ./tests/shellcompletion/test_shell_resolution.py::test_get_win_shell_failure
808808
shell: cmd
809809
- name: Store coverage files
810-
uses: actions/upload-artifact@v4
810+
uses: actions/upload-artifact@v5
811811
with:
812812
name: ${{ env.COVERAGE_FILE }}
813813
path: ${{ env.COVERAGE_FILE }}

.github/workflows/zizmor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
zizmor --format sarif .github/workflows/ > results.sarif
4040
4141
- name: Upload analysis results
42-
uses: actions/upload-artifact@v4
42+
uses: actions/upload-artifact@v5
4343
with:
4444
name: zizmor-results
4545
path: results.sarif

0 commit comments

Comments
 (0)