Skip to content

Commit

Permalink
Bump the github-actions group with 6 updates (#515)
Browse files Browse the repository at this point in the history
Bumps the github-actions group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [actions/setup-python](https://github.com/actions/setup-python) | `5.3.0` | `5.4.0` |
| [hynek/build-and-inspect-python-package](https://github.com/hynek/build-and-inspect-python-package) | `2.11.0` | `2.12.0` |
| [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.5.0` | `4.6.0` |
| [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5.1.2` | `5.3.1` |
| [github/codeql-action](https://github.com/github/codeql-action) | `3.28.0` | `3.28.8` |
| [ncipollo/release-action](https://github.com/ncipollo/release-action) | `1.14.0` | `1.15.0` |


Updates `actions/setup-python` from 5.3.0 to 5.4.0
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v5.3.0...v5.4.0)

Updates `hynek/build-and-inspect-python-package` from 2.11.0 to 2.12.0
- [Release notes](https://github.com/hynek/build-and-inspect-python-package/releases)
- [Changelog](https://github.com/hynek/build-and-inspect-python-package/blob/main/CHANGELOG.md)
- [Commits](hynek/build-and-inspect-python-package@v2.11.0...v2.12.0)

Updates `actions/upload-artifact` from 4.5.0 to 4.6.0
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v4.5.0...v4.6.0)

Updates `codecov/codecov-action` from 5.1.2 to 5.3.1
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](codecov/codecov-action@v5.1.2...v5.3.1)

Updates `github/codeql-action` from 3.28.0 to 3.28.8
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](github/codeql-action@v3.28.0...v3.28.8)

Updates `ncipollo/release-action` from 1.14.0 to 1.15.0
- [Release notes](https://github.com/ncipollo/release-action/releases)
- [Commits](ncipollo/release-action@v1.14.0...v1.15.0)

---
updated-dependencies:
- dependency-name: actions/setup-python
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: hynek/build-and-inspect-python-package
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions
- dependency-name: ncipollo/release-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Feb 1, 2025
1 parent b15e153 commit 0953694
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
uses: actions/[email protected]

- name: Set up Python ${{ env.LATEST_PYTHON_VER }}
uses: actions/setup-python@v5.3.0
uses: actions/setup-python@v5.4.0
with:
python-version: ${{ env.LATEST_PYTHON_VER }}
allow-prereleases: true
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
fetch-depth: 0 # Fetch all refs so setuptools_scm can generate the correct version number

- name: Build & Upload Package
uses: hynek/build-and-inspect-python-package@v2.11.0
uses: hynek/build-and-inspect-python-package@v2.12.0
with:
attest-build-provenance-github: ${{ inputs.attest }}

Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
fetch-depth: 0

- name: Setup Python
uses: actions/setup-python@v5.3.0
uses: actions/setup-python@v5.4.0
with:
python-version: 3.x

Expand All @@ -179,14 +179,14 @@ jobs:
- name: Upload HTML coverage report
if: always() && steps.coverage.outcome == 'failure'
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
with:
name: html-coverage-report
path: ./htmlcov

- name: Upload Coverage to Codecov
if: contains(fromJson('["push", "pull_request"]'), github.event_name)
uses: codecov/codecov-action@v5.1.2
uses: codecov/codecov-action@v5.3.1
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
Expand All @@ -206,7 +206,7 @@ jobs:
uses: actions/[email protected]

- name: Set up Python ${{ env.LATEST_PYTHON_VER }}
uses: actions/setup-python@v5.3.0
uses: actions/setup-python@v5.4.0
with:
python-version: ${{ env.LATEST_PYTHON_VER }}
allow-prereleases: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ jobs:
uses: actions/[email protected]

- name: Initialize CodeQL
uses: github/codeql-action/[email protected].0
uses: github/codeql-action/[email protected].8
with:
languages: python

- name: Autobuild
uses: github/codeql-action/[email protected].0
uses: github/codeql-action/[email protected].8

- name: Perform CodeQL Analysis
uses: github/codeql-action/[email protected].0
uses: github/codeql-action/[email protected].8
with:
category: /language:python
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
git config user.name "pre-commit updates"
- name: Set up Python
uses: actions/setup-python@v5.3.0
uses: actions/setup-python@v5.4.0
with:
python-version: 3.X

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: echo "version=${GITHUB_REF_NAME#v}" >> ${GITHUB_OUTPUT}

- name: Set up Python
uses: actions/setup-python@v5.3.0
uses: actions/setup-python@v5.4.0
with:
python-version: 3.x

Expand All @@ -38,7 +38,7 @@ jobs:
path: dist

- name: Create release
uses: ncipollo/release-action@v1.14.0
uses: ncipollo/release-action@v1.15.0
with:
name: release-${{ steps.build-vars.outputs.version }}
draft: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
path: ./dist

- name: Set up Python ${{ inputs.python-version }}
uses: actions/setup-python@v5.3.0
uses: actions/setup-python@v5.4.0
with:
python-version: ${{ inputs.python-version }}
allow-prereleases: true
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:

- name: Store coverage data
if: success() || failure()
uses: actions/upload-artifact@v4.5.0
uses: actions/upload-artifact@v4.6.0
with:
name: coverage-data-${{ inputs.python-version }}-${{ inputs.qbittorrent-version }}
path: ./.coverage.*
Expand Down

0 comments on commit 0953694

Please sign in to comment.