Skip to content

Commit

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

| Package | From | To |
| --- | --- | --- |
| [actions/checkout](https://github.com/actions/checkout) | `4.2.0` | `4.2.2` |
| [actions/setup-python](https://github.com/actions/setup-python) | `5.2.0` | `5.3.0` |
| [hynek/build-and-inspect-python-package](https://github.com/hynek/build-and-inspect-python-package) | `2.9.0` | `2.10.0` |
| [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.4.0` | `4.4.3` |
| [codecov/codecov-action](https://github.com/codecov/codecov-action) | `4.5.0` | `4.6.0` |
| [github/codeql-action](https://github.com/github/codeql-action) | `3.26.10` | `3.27.0` |


Updates `actions/checkout` from 4.2.0 to 4.2.2
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v4.2.0...v4.2.2)

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

Updates `hynek/build-and-inspect-python-package` from 2.9.0 to 2.10.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.9.0...v2.10.0)

Updates `actions/upload-artifact` from 4.4.0 to 4.4.3
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v4.4.0...v4.4.3)

Updates `codecov/codecov-action` from 4.5.0 to 4.6.0
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](codecov/codecov-action@v4.5.0...v4.6.0)

Updates `github/codeql-action` from 3.26.10 to 3.27.0
- [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.26.10...v3.27.0)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions
- 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-patch
  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-minor
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and rmartin16 committed Nov 1, 2024
1 parent 62536f4 commit 60b4914
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 21 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ jobs:
echo "qbittorrent-password=${{ env.QBITTORRENTAPI_PASSWORD }}" | tee -a ${GITHUB_OUTPUT}
- name: Checkout Repo
uses: actions/checkout@v4.2.0
uses: actions/checkout@v4.2.2

- name: Set up Python ${{ env.LATEST_PYTHON_VER }}
uses: actions/setup-python@v5.2.0
uses: actions/setup-python@v5.3.0
with:
python-version: ${{ env.LATEST_PYTHON_VER }}
allow-prereleases: true
Expand All @@ -79,12 +79,12 @@ jobs:
attestations: write
steps:
- name: Checkout Repo
uses: actions/checkout@v4.2.0
uses: actions/checkout@v4.2.2
with:
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.9.0
uses: hynek/build-and-inspect-python-package@v2.10.0
with:
attest-build-provenance-github: ${{ inputs.attest }}

Expand Down Expand Up @@ -147,12 +147,12 @@ jobs:
runs-on: ubuntu-latest
needs: [ Tests-qBittorrent, Tests-Python ]
steps:
- uses: actions/checkout@v4.2.0
- uses: actions/checkout@v4.2.2
with:
fetch-depth: 0

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

Expand All @@ -178,14 +178,14 @@ jobs:
- name: Upload HTML coverage report
if: always() && steps.coverage.outcome == 'failure'
uses: actions/upload-artifact@v4.4.0
uses: actions/upload-artifact@v4.4.3
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@v4.5.0
uses: codecov/codecov-action@v4.6.0
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
Expand All @@ -202,10 +202,10 @@ jobs:
os: [ ubuntu-latest, windows-latest, macos-latest ]
steps:
- name: Checkout Repo
uses: actions/checkout@v4.2.0
uses: actions/checkout@v4.2.2

- name: Set up Python ${{ env.LATEST_PYTHON_VER }}
uses: actions/setup-python@v5.2.0
uses: actions/setup-python@v5.3.0
with:
python-version: ${{ env.LATEST_PYTHON_VER }}
allow-prereleases: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4.2.0
uses: actions/checkout@v4.2.2

- name: Initialize CodeQL
uses: github/codeql-action/init@v3.26.10
uses: github/codeql-action/init@v3.27.0
with:
languages: python

- name: Autobuild
uses: github/codeql-action/autobuild@v3.26.10
uses: github/codeql-action/autobuild@v3.27.0

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3.26.10
uses: github/codeql-action/analyze@v3.27.0
with:
category: /language:python
6 changes: 3 additions & 3 deletions .github/workflows/pre-commit-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
hook-repos: ${{ steps.hooks.outputs.repos }}
steps:
- name: Checkout Repo
uses: actions/checkout@v4.2.0
uses: actions/checkout@v4.2.2

- name: Get Pre-commit Hooks
id: hooks
Expand All @@ -50,7 +50,7 @@ jobs:
hook-repo: ${{ fromJson(needs.pre-commit-hooks.outputs.hook-repos) }}
steps:
- name: Checkout
uses: actions/checkout@v4.2.0
uses: actions/checkout@v4.2.2
with:
fetch-depth: 1
token: ${{ secrets.PAT }}
Expand All @@ -61,7 +61,7 @@ jobs:
git config user.name "pre-commit updates"
- name: Set up Python
uses: actions/setup-python@v5.2.0
uses: actions/setup-python@v5.3.0
with:
python-version: 3.X

Expand Down
2 changes: 1 addition & 1 deletion .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.2.0
uses: actions/setup-python@v5.3.0
with:
python-version: 3.x

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

steps:
- name: Checkout Repo
uses: actions/checkout@v4.2.0
uses: actions/checkout@v4.2.2

- name: Get packages
uses: actions/download-artifact@v4.1.8
Expand All @@ -53,7 +53,7 @@ jobs:
path: ./dist

- name: Set up Python ${{ inputs.python-version }}
uses: actions/setup-python@v5.2.0
uses: actions/setup-python@v5.3.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.4.0
uses: actions/upload-artifact@v4.4.3
with:
name: coverage-data-${{ inputs.python-version }}-${{ inputs.qbittorrent-version }}
path: ./.coverage.*
Expand Down

0 comments on commit 60b4914

Please sign in to comment.