Skip to content

Commit f4801fd

Browse files
MESH-2092 Bump the dependencies group across 1 directory with 4 updates
Bumps the dependencies group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache), [mikepenz/action-junit-report](https://github.com/mikepenz/action-junit-report) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) Updates `mikepenz/action-junit-report` from 5.6.2 to 6.1.0 - [Release notes](https://github.com/mikepenz/action-junit-report/releases) - [Commits](mikepenz/action-junit-report@3585e95...a294a61) Updates `actions/upload-artifact` from 4 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: mikepenz/action-junit-report dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent e518b9d commit f4801fd

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/merge-develop.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
if: github.repository == 'NHSDigital/mesh-sandbox' && !contains(github.event.head_commit.message, 'tag release version:')
1616
steps:
1717
- name: checkout
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919
with:
2020
fetch-depth: 0
2121

@@ -34,7 +34,7 @@ jobs:
3434
poetry self add "poetry-dynamic-versioning[plugin]"
3535
3636
- name: cache virtualenv
37-
uses: actions/cache@v4
37+
uses: actions/cache@v5
3838
with:
3939
path: |
4040
.venv
@@ -99,7 +99,7 @@ jobs:
9999

100100
- name: publish junit reports
101101
if: success() || failure()
102-
uses: mikepenz/action-junit-report@3585e9575db828022551b4231f165eb59a0e74e3
102+
uses: mikepenz/action-junit-report@a294a61c909bd8a4b563024a2faa28897fd53ebc
103103
with:
104104
check_name: junit reports
105105
report_paths: reports/junit/*.xml
@@ -113,7 +113,7 @@ jobs:
113113
if: github.repository == 'NHSDigital/mesh-sandbox' && github.actor != 'dependabot[bot]' && !contains(github.event.head_commit.message, 'tag release version:')
114114
steps:
115115
- name: checkout
116-
uses: actions/checkout@v5
116+
uses: actions/checkout@v6
117117
with:
118118
fetch-depth: 0
119119

.github/workflows/pull-request.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
if: github.repository == 'NHSDigital/mesh-sandbox'
1616
steps:
1717
- name: checkout
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919
with:
2020
fetch-depth: 0
2121

@@ -61,7 +61,7 @@ jobs:
6161
poetry self add "poetry-dynamic-versioning[plugin]"
6262
6363
- name: cache virtualenv
64-
uses: actions/cache@v4
64+
uses: actions/cache@v5
6565
with:
6666
path: |
6767
.venv
@@ -134,14 +134,14 @@ jobs:
134134

135135
- name: archive reports
136136
if: success() || failure()
137-
uses: actions/upload-artifact@v4
137+
uses: actions/upload-artifact@v6
138138
with:
139139
name: reports
140140
path: reports/**/*
141141

142142
- name: publish junit reports
143143
if: success() || failure()
144-
uses: mikepenz/action-junit-report@3585e9575db828022551b4231f165eb59a0e74e3
144+
uses: mikepenz/action-junit-report@a294a61c909bd8a4b563024a2faa28897fd53ebc
145145
with:
146146
check_name: junit reports
147147
report_paths: reports/junit/*.xml
@@ -155,7 +155,7 @@ jobs:
155155
if: github.repository == 'NHSDigital/mesh-sandbox'
156156
steps:
157157
- name: checkout
158-
uses: actions/checkout@v5
158+
uses: actions/checkout@v6
159159
with:
160160
fetch-depth: 0
161161

@@ -193,7 +193,7 @@ jobs:
193193
poetry self add "poetry-dynamic-versioning[plugin]"
194194
195195
- name: cache virtualenv
196-
uses: actions/cache@v4
196+
uses: actions/cache@v5
197197
with:
198198
path: |
199199
.venv
@@ -237,7 +237,7 @@ jobs:
237237
- lint
238238
steps:
239239
- name: checkout
240-
uses: actions/checkout@v5
240+
uses: actions/checkout@v6
241241
with:
242242
fetch-depth: 0
243243

@@ -280,7 +280,7 @@ jobs:
280280
poetry self add "poetry-dynamic-versioning[plugin]"
281281
282282
- name: cache virtualenv
283-
uses: actions/cache@v4
283+
uses: actions/cache@v5
284284
with:
285285
path: |
286286
.venv

0 commit comments

Comments
 (0)