Skip to content

Commit

Permalink
Bump the gh-actions group with 3 updates (#19)
Browse files Browse the repository at this point in the history
Bumps the gh-actions group with 3 updates: [actions/setup-python](https://github.com/actions/setup-python), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact).


Updates `actions/setup-python` from 4 to 5
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v4...v5)

Updates `actions/upload-artifact` from 3 to 4
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

Updates `actions/download-artifact` from 3 to 4
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: actions/setup-python
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gh-actions
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gh-actions
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gh-actions
...

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 25, 2023
1 parent c72911e commit 87a45d4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Set up Python"
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.python-version }}"
cache: pip
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:

- name: "Upload HTML coverage report"
if: (matrix.python-version == '3.10') && (matrix.os == 'ubuntu-latest')
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: htmlcov
path: htmlcov/
Expand All @@ -86,7 +86,7 @@ jobs:
uses: "actions/checkout@v4"

- name: "Set up Python"
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
with:
python-version: "3.10"
cache: pip
Expand Down Expand Up @@ -146,14 +146,14 @@ jobs:
fetch-depth: '0'

- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: pip
cache-dependency-path: '**/requirements/docs.txt'

- name: Download HTML coverage report
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: htmlcov
path: htmlcov
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
fetch-depth: '0'

- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install build dependencies
Expand Down

0 comments on commit 87a45d4

Please sign in to comment.