Skip to content

Commit 91052ca

Browse files
committed
chore: bump packages
1 parent ec36b1a commit 91052ca

File tree

4 files changed

+357
-119
lines changed

4 files changed

+357
-119
lines changed

certification/fapi/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const pkg = JSON.parse(
2323
);
2424

2525
const __dirname = dirname(import.meta.url);
26-
const selfsigned = generate();
26+
const selfsigned = await generate();
2727
const { PORT = 3000, ISSUER = `http://localhost:${PORT}` } = process.env;
2828

2929
const ALGS = ['PS256'];

certification/oidc/docker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import configuration from './configuration.js';
1616
// TODO: revert after https://gitlab.com/openid/conformance-suite/-/issues/1598 is fixed
1717
configuration.jwks.keys = configuration.jwks.keys.filter((jwk) => jwk.kty !== 'AKP');
1818

19-
const selfsigned = generate();
19+
const selfsigned = await generate();
2020
const { PORT = 3000, ISSUER = `http://localhost:${PORT}` } = process.env;
2121
configuration.findAccount = Account.findAccount;
2222

0 commit comments

Comments
 (0)