Skip to content

Commit d079011

Browse files
build(deps): bump actions/upload-artifact from 4 to 7
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 1f89677 commit d079011

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
- run: bandit -c pyproject.toml -r faigate -f html -o bandit-report.html || true
9393
- run: bandit -c pyproject.toml -r faigate -f json -o bandit-report.json || true
9494
- name: Upload Bandit report
95-
uses: actions/upload-artifact@v4
95+
uses: actions/upload-artifact@v7
9696
if: always()
9797
with:
9898
name: bandit-security-report
@@ -112,7 +112,7 @@ jobs:
112112
- name: Run performance benchmarks
113113
run: pytest tests/benchmarks/ --benchmark-only --benchmark-json=benchmark-results.json
114114
- name: Upload benchmark results
115-
uses: actions/upload-artifact@v4
115+
uses: actions/upload-artifact@v7
116116
with:
117117
name: benchmark-results
118118
path: benchmark-results.json

.github/workflows/publish-dry-run.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Validate Python distributions
4444
run: python -m twine check dist/*
4545
- name: Upload dry-run Python artifacts
46-
uses: actions/upload-artifact@v4
46+
uses: actions/upload-artifact@v7
4747
with:
4848
name: python-publish-dry-run
4949
path: dist/*

.github/workflows/release-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
python -m pip install --upgrade twine
5757
python -m twine check dist/*
5858
- name: Upload Python artifacts
59-
uses: actions/upload-artifact@v4
59+
uses: actions/upload-artifact@v7
6060
with:
6161
name: python-dist
6262
path: dist/*

0 commit comments

Comments
 (0)