Skip to content

Commit

Permalink
Bump the github-actions group with 3 updates (#398)
Browse files Browse the repository at this point in the history
* Bump the github-actions group with 3 updates

Bumps the github-actions group with 3 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [github/codeql-action](https://github.com/github/codeql-action).


Updates `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)

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

Updates `github/codeql-action` from 3.22.11 to 3.22.12
- [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.22.11...v3.22.12)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: github/codeql-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <[email protected]>

* Adjustments for changes in download-artifact@v4

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Russell Martin <[email protected]>
  • Loading branch information
dependabot[bot] and rmartin16 authored Jan 1, 2024
1 parent 28fe022 commit 3c6ebb6
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
run: tox -e package

- name: Upload Package
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.0.0
with:
name: package
path: ./dist
Expand Down Expand Up @@ -165,9 +165,10 @@ jobs:
python -m pip install -e .[dev]
- name: Retrieve coverage data
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v4.1.0
with:
name: coverage-data
pattern: coverage-data-*
merge-multiple: true

- name: Combine coverage
run: python -m coverage combine
Expand All @@ -180,7 +181,7 @@ jobs:
- name: Upload HTML coverage report
if: always() && steps.coverage.outcome == 'failure'
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.0.0
with:
name: html-coverage-report
path: ./htmlcov
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].11
uses: github/codeql-action/[email protected].12
with:
languages: python

- name: Autobuild
uses: github/codeql-action/[email protected].11
uses: github/codeql-action/[email protected].12

- name: Perform CodeQL Analysis
uses: github/codeql-action/[email protected].11
uses: github/codeql-action/[email protected].12
with:
category: /language:python
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
python-version: "3.x"

- name: Get packages
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v4.1.0
with:
name: "package"
path: dist
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
uses: actions/[email protected]

- name: Get packages
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v4.1.0
with:
name: package
path: ./dist
Expand Down Expand Up @@ -81,9 +81,9 @@ jobs:

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

- name: Send mail
Expand Down

0 comments on commit 3c6ebb6

Please sign in to comment.