Skip to content

Commit 077d2d3

Browse files
MESH-2092 update deps
1 parent 273b52b commit 077d2d3

File tree

4 files changed

+80
-73
lines changed

4 files changed

+80
-73
lines changed

.github/dependabot.yml

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
1-
# To get started with Dependabot version updates, you'll need to specify which
2-
# package ecosystems to update and where the package manifests are located.
3-
# Please see the documentation for all configuration options:
4-
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5-
61
version: 2
2+
73
updates:
84
- package-ecosystem: "pip"
9-
directory: "/" # Location of package manifests
5+
directory: "/"
6+
schedule:
7+
interval: "monthly"
8+
groups:
9+
dependencies:
10+
patterns:
11+
- "*"
12+
13+
- package-ecosystem: "github-actions"
14+
directory: "/"
1015
schedule:
11-
interval: "monthly"
16+
interval: "monthly"
17+
groups:
18+
dependencies:
19+
patterns:
20+
- "*"

.github/workflows/merge-develop.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ jobs:
1111
if: github.repository == 'NHSDigital/nhs-aws-helpers' && !contains(github.event.head_commit.message, 'tag release version:')
1212
steps:
1313
- name: checkout
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
1717

1818
- name: setup python
19-
uses: actions/setup-python@v4
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version-file: "pyproject.toml"
2222

2323
- name: setup poetry
24-
uses: abatilo/actions-poetry@v2
24+
uses: abatilo/actions-poetry@v4
2525
with:
2626
poetry-version: 1.5.1
2727

@@ -30,7 +30,7 @@ jobs:
3030
poetry self add "poetry-dynamic-versioning[plugin]"
3131
3232
- name: cache virtualenv
33-
uses: actions/cache@v3
33+
uses: actions/cache@v4
3434
with:
3535
path: |
3636
.venv
@@ -58,7 +58,7 @@ jobs:
5858

5959
- name: setup java
6060
if: github.actor != 'dependabot[bot]' && (success() || failure())
61-
uses: actions/setup-java@v3
61+
uses: actions/setup-java@v4
6262
with:
6363
distribution: "corretto"
6464
java-version: "17"
@@ -83,7 +83,7 @@ jobs:
8383

8484
- name: publish junit reports
8585
if: success() || failure()
86-
uses: mikepenz/action-junit-report@v2
86+
uses: mikepenz/action-junit-report@v5
8787
with:
8888
check_name: junit reports
8989
report_paths: reports/junit/*.xml
@@ -98,7 +98,7 @@ jobs:
9898
if: github.repository == 'NHSDigital/nhs-aws-helpers' && github.actor != 'dependabot[bot]' && !contains(github.event.head_commit.message, 'tag release version:')
9999
steps:
100100
- name: checkout
101-
uses: actions/checkout@v3
101+
uses: actions/checkout@v4
102102
with:
103103
fetch-depth: 0
104104

@@ -108,12 +108,12 @@ jobs:
108108
find . -type f | xargs chmod g+w
109109
110110
- name: setup python
111-
uses: actions/setup-python@v4
111+
uses: actions/setup-python@v5
112112
with:
113113
python-version-file: "pyproject.toml"
114114

115115
- name: setup poetry
116-
uses: abatilo/actions-poetry@v2
116+
uses: abatilo/actions-poetry@v4
117117
with:
118118
poetry-version: 1.5.1
119119

.github/workflows/pull-request.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
if: github.repository == 'NHSDigital/nhs-aws-helpers'
1919
steps:
2020
- name: checkout
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222
with:
2323
fetch-depth: 0
2424

@@ -44,7 +44,7 @@ jobs:
4444
git merge --ff-only "${{ github.event.pull_request.head.sha }}"
4545
4646
- name: setup python
47-
uses: actions/setup-python@v4
47+
uses: actions/setup-python@v5
4848
with:
4949
python-version: ${{ matrix.python-version }}
5050

@@ -67,7 +67,7 @@ jobs:
6767
if: github.repository == 'NHSDigital/nhs-aws-helpers'
6868
steps:
6969
- name: checkout
70-
uses: actions/checkout@v3
70+
uses: actions/checkout@v4
7171
with:
7272
fetch-depth: 0
7373

@@ -96,12 +96,12 @@ jobs:
9696
git merge --ff-only "${{ github.event.pull_request.head.sha }}"
9797
9898
- name: setup python
99-
uses: actions/setup-python@v4
99+
uses: actions/setup-python@v5
100100
with:
101101
python-version-file: "pyproject.toml"
102102

103103
- name: setup poetry
104-
uses: abatilo/actions-poetry@v2
104+
uses: abatilo/actions-poetry@v4
105105
with:
106106
poetry-version: 1.5.1
107107

@@ -110,7 +110,7 @@ jobs:
110110
poetry self add "poetry-dynamic-versioning[plugin]"
111111
112112
- name: cache virtualenv
113-
uses: actions/cache@v3
113+
uses: actions/cache@v4
114114
with:
115115
path: |
116116
.venv
@@ -141,7 +141,7 @@ jobs:
141141

142142
- name: setup java
143143
if: success() || failure()
144-
uses: actions/setup-java@v3
144+
uses: actions/setup-java@v4
145145
with:
146146
distribution: "corretto"
147147
java-version: "17"
@@ -178,7 +178,7 @@ jobs:
178178

179179
- name: publish junit reports
180180
if: success() || failure()
181-
uses: mikepenz/action-junit-report@v3
181+
uses: mikepenz/action-junit-report@v5
182182
with:
183183
check_name: junit reports
184184
report_paths: reports/junit/*.xml
@@ -192,7 +192,7 @@ jobs:
192192
if: github.repository == 'NHSDigital/nhs-aws-helpers'
193193
steps:
194194
- name: checkout
195-
uses: actions/checkout@v3
195+
uses: actions/checkout@v4
196196
with:
197197
fetch-depth: 0
198198

@@ -213,12 +213,12 @@ jobs:
213213
git merge --ff-only "${{ github.event.pull_request.head.sha }}"
214214
215215
- name: setup python
216-
uses: actions/setup-python@v4
216+
uses: actions/setup-python@v5
217217
with:
218218
python-version-file: "pyproject.toml"
219219

220220
- name: setup poetry
221-
uses: abatilo/actions-poetry@v2
221+
uses: abatilo/actions-poetry@v4
222222
with:
223223
poetry-version: 1.5.1
224224

@@ -227,7 +227,7 @@ jobs:
227227
poetry self add "poetry-dynamic-versioning[plugin]"
228228
229229
- name: cache virtualenv
230-
uses: actions/cache@v3
230+
uses: actions/cache@v4
231231
with:
232232
path: |
233233
.venv
@@ -272,7 +272,7 @@ jobs:
272272
- tox
273273
steps:
274274
- name: checkout
275-
uses: actions/checkout@v3
275+
uses: actions/checkout@v4
276276
with:
277277
fetch-depth: 0
278278

@@ -298,12 +298,12 @@ jobs:
298298
git merge --ff-only "${{ github.event.pull_request.head.sha }}"
299299
300300
- name: setup python
301-
uses: actions/setup-python@v4
301+
uses: actions/setup-python@v5
302302
with:
303303
python-version-file: "pyproject.toml"
304304

305305
- name: setup poetry
306-
uses: abatilo/actions-poetry@v2
306+
uses: abatilo/actions-poetry@v4
307307
with:
308308
poetry-version: 1.5.1
309309

0 commit comments

Comments
 (0)