Skip to content

Commit 88b7ab5

Browse files
dependabot[bot]vredchenko
authored andcommitted
build(deps): bump the actions group with 2 updates
Bumps the actions group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 0c7843c commit 88b7ab5

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/_dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
pipx run build
1919
2020
- name: Upload sdist and wheel as artifacts
21-
uses: actions/upload-artifact@v4
21+
uses: actions/upload-artifact@v5
2222
with:
2323
name: dist
2424
path: dist

.github/workflows/_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
continue-on-error: true
4141

4242
- name: Upload built docs artifact
43-
uses: actions/upload-artifact@v4
43+
uses: actions/upload-artifact@v5
4444
with:
4545
name: docs
4646
path: build

.github/workflows/_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77

88
steps:
99
- name: Download artifacts
10-
uses: actions/download-artifact@v5
10+
uses: actions/download-artifact@v6
1111
with:
1212
merge-multiple: true
1313

.github/workflows/build_win_fsrecorder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
if ($LASTEXITCODE -ne 0) { throw "FSRecorder smoke test failed" }
5757
5858
- name: Upload artifacts
59-
uses: actions/upload-artifact@v4
59+
uses: actions/upload-artifact@v5
6060
with:
6161
name: fsrecorder-windows-v${{ github.run_number }}-${{ github.sha }}
6262
path: dist/

.github/workflows/build_win_smartem_agent.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
if ($LASTEXITCODE -ne 0) { throw "SmartEM Agent tools smoke test failed" }
5252
5353
- name: Upload artifacts
54-
uses: actions/upload-artifact@v4
54+
uses: actions/upload-artifact@v5
5555
with:
5656
name: smartem_smartem_agent_tools-v${{ github.run_number }}-${{ github.sha }}
5757
path: dist/

.github/workflows/security-scan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ jobs:
150150
151151
# Upload results
152152
- name: Upload scan results (CI mode)
153-
uses: actions/upload-artifact@v4
153+
uses: actions/upload-artifact@v5
154154
if: failure() && github.event_name != 'schedule'
155155
with:
156156
name: secrets-scan-results
@@ -159,7 +159,7 @@ jobs:
159159
retention-days: 30
160160

161161
- name: Upload scan report (Comprehensive mode)
162-
uses: actions/upload-artifact@v4
162+
uses: actions/upload-artifact@v5
163163
if: github.event_name == 'schedule'
164164
with:
165165
name: security-scan-report

0 commit comments

Comments
 (0)