Skip to content

Commit

Permalink
Bump prettier from 2.7.1 to 3.2.4
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
dependabot[bot] authored and flaeppe committed Feb 2, 2024
1 parent d5ea050 commit d9de600
Show file tree
Hide file tree
Showing 4 changed files with 95 additions and 27 deletions.
110 changes: 89 additions & 21 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
"@vercel/ncc": "^0.38.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-prettier": "^5.1.0",
"jest": "^29.7.0",
"eslint-plugin-jest": "^27.6.3",
"prettier": "^2.7.1"
"prettier": "^3.2.4"
}
}
2 changes: 1 addition & 1 deletion src/action.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async function run() {
{
input: Buffer.from(dockerfile, "utf-8"),
env: { DOCKER_SCAN_SUGGEST: "false" },
}
},
);
});

Expand Down
6 changes: 3 additions & 3 deletions src/action.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ describe("run", () => {
// git hash-object --stdin
const expectedOutput = serializeOutput(
"hash",
"6c867c528d4bf0844d5176f78f6abfee0adfff2b"
"6c867c528d4bf0844d5176f78f6abfee0adfff2b",
);

await run();
Expand All @@ -71,8 +71,8 @@ describe("run", () => {
await run();
expect(process.stdout.write).toHaveBeenLastCalledWith(
expect.stringMatching(
`::error::The process '.*/docker' failed with exit code 1[^0-9]`
)
`::error::The process '.*/docker' failed with exit code 1[^0-9]`,
),
);
expect(setFailedMock).toHaveBeenCalled();
});
Expand Down

0 comments on commit d9de600

Please sign in to comment.