Skip to content

Commit

Permalink
gha: bump actions/upload-artifact from 3.1.3 to 4.0.0 (#152)
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3.1.3 to 4.0.0.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3.1.3...v4.0.0)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Dec 18, 2023
1 parent 09a2509 commit d812f28
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ jobs:
- name: Upload artifact - docs
if: steps.build.outcome == 'success'
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.0.0
with:
name: docs
path: cpython/Doc/build/html

- name: Upload artifact - log files
if: always()
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.0.0
with:
name: build-logs
path: logs/*
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
make lint
- name: Upload artifact - log files
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.0.0
with:
name: lint-logs
path: logs/*
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
run: make spell

- name: Upload artifact - log files
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.0.0
with:
name: pospell-logs
path: logs/*
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
powrap compendium.po
- name: Upload artifact
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.0.0
with:
name: compendium
path: compendium.po
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
TX_TOKEN: ${{ secrets.TX_TOKEN }}

- name: Upload artifact - po files
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.0.0
with:
name: translations
path: |
Expand All @@ -95,7 +95,7 @@ jobs:
- name: Upload artifact - log files
if: always()
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.0.0
with:
name: pull-logs
path: |
Expand Down

0 comments on commit d812f28

Please sign in to comment.