Skip to content

Commit 1e40489

Browse files
chore(deps): bump the actions group across 1 directory with 3 updates
Bumps the actions group with 3 updates in the / directory: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [mikepenz/action-junit-report](https://github.com/mikepenz/action-junit-report). 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) Updates `mikepenz/action-junit-report` from 5 to 6 - [Release notes](https://github.com/mikepenz/action-junit-report/releases) - [Commits](mikepenz/action-junit-report@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 - dependency-name: mikepenz/action-junit-report 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 0a9ef95 commit 1e40489

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

.github/workflows/bullmq-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
7171
- name: Upload logs on failure
7272
if: failure()
73-
uses: actions/upload-artifact@v4
73+
uses: actions/upload-artifact@v5
7474
with:
7575
name: unit_logs
7676
path: /tmp/dragonfly.*

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ jobs:
190190
191191
- name: Upload unit logs on failure
192192
if: failure()
193-
uses: actions/upload-artifact@v4
193+
uses: actions/upload-artifact@v5
194194
with:
195195
name: unit_logs
196196
path: /tmp/*INFO*
@@ -208,7 +208,7 @@ jobs:
208208

209209
- name: Upload regression logs on failure
210210
if: failure()
211-
uses: actions/upload-artifact@v4
211+
uses: actions/upload-artifact@v5
212212
with:
213213
name: regression_logs
214214
path: /tmp/failed/*

.github/workflows/cov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
echo ls covout
9090
ls covout/
9191
- name: Upload coverage
92-
uses: actions/upload-artifact@v4
92+
uses: actions/upload-artifact@v5
9393
with:
9494
name: coverage-report
9595
path: build/covout/

.github/workflows/epoll-regression-tests.yml

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

6262
- name: Upload logs on failure
6363
if: failure()
64-
uses: actions/upload-artifact@v4
64+
uses: actions/upload-artifact@v5
6565
with:
6666
name: logs
6767
path: /tmp/failed/*

.github/workflows/regression-tests.yml

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

5959
- name: Upload logs on failure
6060
if: failure()
61-
uses: actions/upload-artifact@v4
61+
uses: actions/upload-artifact@v5
6262
with:
6363
name: logs
6464
path: /tmp/failed/*

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
mv dragonfly_*.deb ${{ env.RELEASE_DIR }}/
4646
4747
- name: Upload
48-
uses: actions/upload-artifact@v4
48+
uses: actions/upload-artifact@v5
4949
with:
5050
name: dragonfly-aarch64
5151
path: |
@@ -115,15 +115,15 @@ jobs:
115115
fi
116116
117117
- name: Upload
118-
uses: actions/upload-artifact@v4
118+
uses: actions/upload-artifact@v5
119119
with:
120120
name: dragonfly-amd64-${{ matrix.name }}
121121
path: results-artifacts/*
122122
publish_release:
123123
runs-on: ubuntu-latest
124124
needs: [build-native, build-arm]
125125
steps:
126-
- uses: actions/download-artifact@v5
126+
- uses: actions/download-artifact@v6
127127
name: Download files
128128
with:
129129
path: artifacts

.github/workflows/repeat-tests.yml

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

107107
- name: Upload logs on failure
108108
if: failure()
109-
uses: actions/upload-artifact@v4
109+
uses: actions/upload-artifact@v5
110110
with:
111111
name: logs
112112
path: /tmp/failed/*

.github/workflows/test-fakeredis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,22 +74,22 @@ jobs:
7474
redis-cli -p 6380 INFO ALL
7575
- name: Upload Tests Result xml
7676
if: always()
77-
uses: actions/upload-artifact@v4
77+
uses: actions/upload-artifact@v5
7878
with:
7979
name: tests-result-logs
8080
path: |
8181
/tmp/dragonfly.*
8282
8383
- name: Upload Tests Result html
8484
if: always()
85-
uses: actions/upload-artifact@v4
85+
uses: actions/upload-artifact@v5
8686
with:
8787
name: report-tests.html
8888
path: tests/fakeredis/report-tests.html
8989

9090
- name: Publish Test Report
9191
if: ${{ github.event_name == 'pull_request' }}
92-
uses: mikepenz/action-junit-report@v5
92+
uses: mikepenz/action-junit-report@v6
9393
with:
9494
report_paths: tests/fakeredis/results-tests.xml
9595
# Do not create a check run
@@ -108,14 +108,14 @@ jobs:
108108
url: ${{ steps.deployment.outputs.page_url }}
109109
steps:
110110
- name: Bundle Tests Result to one artifact
111-
uses: actions/upload-artifact/merge@v4
111+
uses: actions/upload-artifact/merge@v5
112112
with:
113113
delete-merged: true
114114
name: test-results-html
115115
pattern: '*.html'
116116

117117
- name: Download html pages
118-
uses: actions/download-artifact@v5
118+
uses: actions/download-artifact@v6
119119
with:
120120
name: test-results-html
121121
path: results/

0 commit comments

Comments
 (0)