Skip to content

Commit eda3234

Browse files
authored
Merge branch 'master' into dev/rybrande/LargeJson
2 parents 55f34de + 35e47e6 commit eda3234

File tree

6 files changed

+74
-59
lines changed

6 files changed

+74
-59
lines changed

.github/dependabot.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: 'npm'
4+
directory: '/'
5+
schedule:
6+
interval: weekly
7+
groups:
8+
dev-dependencies:
9+
dependency-type: 'development'
10+
11+
- package-ecosystem: 'github-actions'
12+
directory: '/'
13+
schedule:
14+
interval: 'weekly'
15+
groups:
16+
github-actions:
17+
patterns:
18+
- 'actions/*'

.github/workflows/build-and-deploy-dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v4.1.1
15+
uses: actions/checkout@v6
1616

1717
- name: Upload package-lock.json
18-
uses: actions/upload-artifact@v4
18+
uses: actions/upload-artifact@v6
1919
with:
2020
name: package-lock.json
2121
path: package-lock.json

.github/workflows/build-and-deploy-prod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v4.1.1
15+
uses: actions/checkout@v6
1616

1717
- name: Upload package-lock.json
18-
uses: actions/upload-artifact@v4
18+
uses: actions/upload-artifact@v6
1919
with:
2020
name: package-lock.json
2121
path: package-lock.json

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
name: Run tests
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v6
2323

24-
- uses: actions/setup-node@v4
24+
- uses: actions/setup-node@v6
2525
with:
2626
node-version: 18
2727
cache: 'npm'
@@ -36,7 +36,7 @@ jobs:
3636
name: Build Docker image
3737
runs-on: ubuntu-latest
3838
steps:
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v6
4040

4141
- name: Docker build
4242
run: docker build .

package-lock.json

Lines changed: 45 additions & 48 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"@microsoft/refreshing-config": "^0.1.3",
4343
"applicationinsights": "^1.5.0",
4444
"ar-async": "^0.1.4",
45-
"axios": "^1.11.0",
45+
"axios": "^1.12.0",
4646
"axios-retry": "^3.2.5",
4747
"body-parser": "^1.19.0",
4848
"debug": "^4.3.4",
@@ -53,14 +53,14 @@
5353
"decompress-tarxz": "^3.0.0",
5454
"decompress-unzip": "github:clearlydefined/decompress-unzip#expose-opts",
5555
"du": "^1.0.0",
56-
"express": "^4.21.2",
56+
"express": "^4.22.1",
5757
"express-init": "^1.1.1",
5858
"extend": "^3.0.1",
5959
"extract-zip": "^1.6.8",
6060
"geit": "0.0.7",
6161
"ghrequestor": "^0.1.7",
6262
"htmlencode": "0.0.4",
63-
"js-yaml": "^3.13.1",
63+
"js-yaml": "^3.14.2",
6464
"linebyline": "^1.3.0",
6565
"lodash": "^4.17.21",
6666
"luxon": "^2.5.2",
@@ -94,7 +94,7 @@
9494
"eslint": "^8.56.0",
9595
"eslint-config-prettier": "^9.1.0",
9696
"globals": "^16.3.0",
97-
"mocha": "^8.2.0",
97+
"mocha": "^8.4.0",
9898
"mockttp": "^3.13.0",
9999
"nyc": "^17.1.0",
100100
"prettier": "3.2.4",

0 commit comments

Comments
 (0)