Skip to content

Commit 4ca2d5d

Browse files
authored
Dependency updates (#429)
2 parents 9d68e8b + f31476b commit 4ca2d5d

File tree

6 files changed

+51
-40
lines changed

6 files changed

+51
-40
lines changed

sources/package-lock.json

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

sources/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"license": "MIT",
3434
"dependencies": {
3535
"@actions/artifact": "2.1.11",
36-
"@actions/cache": "3.2.4",
36+
"@actions/cache": "3.3.0",
3737
"@actions/core": "1.11.1",
3838
"@actions/exec": "1.1.1",
3939
"@actions/github": "6.0.0",
@@ -51,17 +51,17 @@
5151
},
5252
"devDependencies": {
5353
"@types/jest": "29.5.14",
54-
"@types/node": "20.17.3",
54+
"@types/node": "20.17.6",
5555
"@types/unzipper": "0.10.10",
5656
"@types/which": "3.0.4",
5757
"@typescript-eslint/parser": "7.18.0",
5858
"@vercel/ncc": "0.38.2",
5959
"eslint": "8.57.1",
6060
"eslint-plugin-github": "5.0.2",
61-
"eslint-plugin-jest": "28.8.3",
61+
"eslint-plugin-jest": "28.9.0",
6262
"jest": "29.7.0",
6363
"js-yaml": "4.1.0",
64-
"nock": "13.5.5",
64+
"nock": "13.5.6",
6565
"npm-run-all": "4.1.5",
6666
"patch-package": "8.0.0",
6767
"prettier": "3.3.3",

sources/src/wrapper-validation/wrapper-checksums.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11
[
2+
{
3+
"version": "8.11",
4+
"checksum": "2db75c40782f5e8ba1fc278a5574bab070adccb2d21ca5a6e5ed840888448046"
5+
},
6+
{
7+
"version": "8.11-rc-3",
8+
"checksum": "2db75c40782f5e8ba1fc278a5574bab070adccb2d21ca5a6e5ed840888448046"
9+
},
10+
{
11+
"version": "8.11-rc-2",
12+
"checksum": "2db75c40782f5e8ba1fc278a5574bab070adccb2d21ca5a6e5ed840888448046"
13+
},
214
{
315
"version": "8.11-rc-1",
416
"checksum": "2db75c40782f5e8ba1fc278a5574bab070adccb2d21ca5a6e5ed840888448046"

sources/test/init-scripts/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencies {
2020
testImplementation ('io.ratpack:ratpack-groovy-test:1.9.0') {
2121
exclude group: 'org.codehaus.groovy', module: 'groovy-all'
2222
}
23-
testImplementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-smile:2.18.0'
23+
testImplementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-smile:2.18.1'
2424
}
2525

2626
test {

sources/test/jest/wrapper-validation/checksums.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ test('fetches wrapper jar checksums for snapshots', async () => {
3737
const validChecksums = await checksums.fetchUnknownChecksums(true, new checksums.WrapperChecksums)
3838

3939
// Expect that at least one snapshot checksum is different from the non-snapshot checksums
40-
expect(validChecksums.size).toBeGreaterThan(nonSnapshotChecksums.size)
40+
expect(nonSnapshotChecksums.size).toBeGreaterThan(10)
41+
expect(validChecksums.size).toBeGreaterThanOrEqual(nonSnapshotChecksums.size)
4142
})
4243

4344
test('fetches all wrapper checksum URLS for snapshots', async () => {

0 commit comments

Comments
 (0)