mirror of
https://github.com/theupdateframework/python-tuf
synced 2026-05-24 10:08:28 +00:00
build(deps): bump the action-dependencies group with 3 updates
Bumps the action-dependencies 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](a8a3f3ad30...c7d193f32e) Updates `actions/download-artifact` from 3.0.2 to 4.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](9bc31d5ccc...7a1cd3216c) Updates `github/codeql-action` from 2 to 3 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: action-dependencies - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: action-dependencies - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: action-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
parent
9b877d2971
commit
0ee4bb14d8
3 changed files with 6 additions and 6 deletions
6
.github/workflows/cd.yml
vendored
6
.github/workflows/cd.yml
vendored
|
|
@ -34,7 +34,7 @@ jobs:
|
|||
run: PIP_CONSTRAINT=requirements/build.txt python3 -m build --sdist --wheel --outdir dist/ .
|
||||
|
||||
- name: Store build artifacts
|
||||
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
||||
uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0
|
||||
# NOTE: The GitHub release page contains the release artifacts too, but using
|
||||
# GitHub upload/download actions seems robuster: there is no need to compute
|
||||
# download URLs and tampering with artifacts between jobs is more limited.
|
||||
|
|
@ -52,7 +52,7 @@ jobs:
|
|||
release_id: ${{ steps.gh-release.outputs.result }}
|
||||
steps:
|
||||
- name: Fetch build artifacts
|
||||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
|
||||
uses: actions/download-artifact@7a1cd3216ca9260cd8022db641d960b1db4d1be4 # v4.0.0
|
||||
with:
|
||||
name: build-artifacts
|
||||
path: dist
|
||||
|
|
@ -92,7 +92,7 @@ jobs:
|
|||
id-token: write # to authenticate as Trusted Publisher to pypi.org
|
||||
steps:
|
||||
- name: Fetch build artifacts
|
||||
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
|
||||
uses: actions/download-artifact@7a1cd3216ca9260cd8022db641d960b1db4d1be4 # v4.0.0
|
||||
with:
|
||||
name: build-artifacts
|
||||
path: dist
|
||||
|
|
|
|||
4
.github/workflows/codeql-analysis.yml
vendored
4
.github/workflows/codeql-analysis.yml
vendored
|
|
@ -26,9 +26,9 @@ jobs:
|
|||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
||||
|
||||
- name: Initialize CodeQL
|
||||
uses: github/codeql-action/init@v2 # unpinned since this is not security critical
|
||||
uses: github/codeql-action/init@v3 # unpinned since this is not security critical
|
||||
with:
|
||||
languages: 'python'
|
||||
|
||||
- name: Perform CodeQL Analysis
|
||||
uses: github/codeql-action/analyze@v2 # unpinned since this is not security critical
|
||||
uses: github/codeql-action/analyze@v3 # unpinned since this is not security critical
|
||||
|
|
|
|||
2
.github/workflows/scorecards.yml
vendored
2
.github/workflows/scorecards.yml
vendored
|
|
@ -35,6 +35,6 @@ jobs:
|
|||
publish_results: true
|
||||
|
||||
- name: "Upload to code-scanning dashboard"
|
||||
uses: github/codeql-action/upload-sarif@v2 # unpinned since this is not security critical
|
||||
uses: github/codeql-action/upload-sarif@v3 # unpinned since this is not security critical
|
||||
with:
|
||||
sarif_file: results.sarif
|
||||
|
|
|
|||
Loading…
Reference in a new issue