Skip to content

Commit f0341f8

Browse files
Bump prettier from 2.7.1 to 3.2.4 (#10)
* Bump prettier from 2.7.1 to 3.2.4 Bumps [prettier](https://github.com/prettier/prettier) from 2.7.1 to 3.2.4. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](prettier/prettier@2.7.1...3.2.4) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Petter Friberg <[email protected]>
1 parent d5ea050 commit f0341f8

File tree

5 files changed

+96
-28
lines changed

5 files changed

+96
-28
lines changed

dist/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3982,7 +3982,7 @@ async function run() {
39823982
{
39833983
input: Buffer.from(dockerfile, "utf-8"),
39843984
env: { DOCKER_SCAN_SUGGEST: "false" },
3985-
}
3985+
},
39863986
);
39873987
});
39883988

package-lock.json

+89-21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
"@vercel/ncc": "^0.38.1",
3333
"eslint": "^8.22.0",
3434
"eslint-config-prettier": "^9.1.0",
35-
"eslint-plugin-prettier": "^4.2.1",
35+
"eslint-plugin-prettier": "^5.1.0",
3636
"jest": "^29.7.0",
3737
"eslint-plugin-jest": "^27.6.3",
38-
"prettier": "^2.7.1"
38+
"prettier": "^3.2.4"
3939
}
4040
}

src/action.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ async function run() {
2222
{
2323
input: Buffer.from(dockerfile, "utf-8"),
2424
env: { DOCKER_SCAN_SUGGEST: "false" },
25-
}
25+
},
2626
);
2727
});
2828

src/action.test.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ describe("run", () => {
5252
// git hash-object --stdin
5353
const expectedOutput = serializeOutput(
5454
"hash",
55-
"6c867c528d4bf0844d5176f78f6abfee0adfff2b"
55+
"6c867c528d4bf0844d5176f78f6abfee0adfff2b",
5656
);
5757

5858
await run();
@@ -71,8 +71,8 @@ describe("run", () => {
7171
await run();
7272
expect(process.stdout.write).toHaveBeenLastCalledWith(
7373
expect.stringMatching(
74-
`::error::The process '.*/docker' failed with exit code 1[^0-9]`
75-
)
74+
`::error::The process '.*/docker' failed with exit code 1[^0-9]`,
75+
),
7676
);
7777
expect(setFailedMock).toHaveBeenCalled();
7878
});

0 commit comments

Comments
 (0)