aws-cdk-github-oidc 5.1.0 → 5.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +3 -3
- package/lib/provider.js +1 -1
- package/lib/role.js +1 -1
- package/package.json +10 -10
- package/pnpm-workspace.yaml +6 -1
package/.jsii
CHANGED
|
@@ -9011,7 +9011,7 @@
|
|
|
9011
9011
|
"stability": "experimental"
|
|
9012
9012
|
},
|
|
9013
9013
|
"homepage": "https://github.com/aripalo/aws-cdk-github-oidc.git",
|
|
9014
|
-
"jsiiVersion": "6.0.
|
|
9014
|
+
"jsiiVersion": "6.0.14 (build 44649f3)",
|
|
9015
9015
|
"keywords": [
|
|
9016
9016
|
"aws",
|
|
9017
9017
|
"aws-cdk",
|
|
@@ -9631,6 +9631,6 @@
|
|
|
9631
9631
|
"symbolId": "src/iam-role-props:RoleProps"
|
|
9632
9632
|
}
|
|
9633
9633
|
},
|
|
9634
|
-
"version": "5.1.
|
|
9635
|
-
"fingerprint": "
|
|
9634
|
+
"version": "5.1.1",
|
|
9635
|
+
"fingerprint": "28xBlmoN/mLWRB+kH16dtnWQR+jYN8I1j9NCUbOMbPo="
|
|
9636
9636
|
}
|
package/lib/provider.js
CHANGED
|
@@ -48,7 +48,7 @@ const iam = __importStar(require("aws-cdk-lib/aws-iam"));
|
|
|
48
48
|
* @see https://docs.github.com/en/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-amazon-web-services
|
|
49
49
|
*/
|
|
50
50
|
class GithubActionsIdentityProvider extends iam.OidcProviderNative {
|
|
51
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "aws-cdk-github-oidc.GithubActionsIdentityProvider", version: "5.1.
|
|
51
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "aws-cdk-github-oidc.GithubActionsIdentityProvider", version: "5.1.1" };
|
|
52
52
|
static issuer = "token.actions.githubusercontent.com";
|
|
53
53
|
/**
|
|
54
54
|
* Retrieve a reference to existing Github OIDC provider in your AWS account.
|
package/lib/role.js
CHANGED
|
@@ -61,7 +61,7 @@ const provider_1 = require("./provider");
|
|
|
61
61
|
* myBucket.grantWrite(uploadRole);
|
|
62
62
|
*/
|
|
63
63
|
class GithubActionsRole extends iam.Role {
|
|
64
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "aws-cdk-github-oidc.GithubActionsRole", version: "5.1.
|
|
64
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "aws-cdk-github-oidc.GithubActionsRole", version: "5.1.1" };
|
|
65
65
|
/**
|
|
66
66
|
* Extracts props given for the created IAM Role Construct.
|
|
67
67
|
* @param props for the GithubActionsRole
|
package/package.json
CHANGED
|
@@ -20,26 +20,26 @@
|
|
|
20
20
|
"@typescript-eslint/eslint-plugin": "^8",
|
|
21
21
|
"@typescript-eslint/parser": "^8",
|
|
22
22
|
"aws-cdk-lib": "2.260.0",
|
|
23
|
-
"commit-and-tag-version": "^
|
|
23
|
+
"commit-and-tag-version": "^13",
|
|
24
24
|
"constructs": "10.7.2",
|
|
25
25
|
"eslint": "^9",
|
|
26
26
|
"eslint-config-prettier": "^10.1.8",
|
|
27
27
|
"eslint-import-resolver-typescript": "^2.7.1",
|
|
28
|
-
"eslint-plugin-import": "^2.
|
|
29
|
-
"eslint-plugin-prettier": "^5.5.
|
|
28
|
+
"eslint-plugin-import": "^2.32.0",
|
|
29
|
+
"eslint-plugin-prettier": "^5.5.6",
|
|
30
30
|
"jest": "^30",
|
|
31
31
|
"jest-junit": "^17",
|
|
32
32
|
"jsii": "~6.0.7",
|
|
33
|
-
"jsii-diff": "^1.
|
|
33
|
+
"jsii-diff": "^1.140.0",
|
|
34
34
|
"jsii-docgen": "^10.5.0",
|
|
35
|
-
"jsii-pacmak": "^1.
|
|
35
|
+
"jsii-pacmak": "^1.140.0",
|
|
36
36
|
"jsii-rosetta": "~6.0.7",
|
|
37
|
-
"lefthook": "2.1.
|
|
38
|
-
"prettier": "^3.8
|
|
39
|
-
"projen": "^0.
|
|
37
|
+
"lefthook": "2.1.14",
|
|
38
|
+
"prettier": "^3.9.8",
|
|
39
|
+
"projen": "^0.103.25",
|
|
40
40
|
"ts-jest": "^29",
|
|
41
41
|
"ts-node": "^10.9.2",
|
|
42
|
-
"tsx": "^4.
|
|
42
|
+
"tsx": "^4.23.15",
|
|
43
43
|
"typescript": "^6.0.2"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"publishConfig": {
|
|
74
74
|
"access": "public"
|
|
75
75
|
},
|
|
76
|
-
"version": "5.1.
|
|
76
|
+
"version": "5.1.1",
|
|
77
77
|
"jest": {
|
|
78
78
|
"coverageProvider": "v8",
|
|
79
79
|
"testMatch": [
|
package/pnpm-workspace.yaml
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# ~~ Generated by projen. To modify, edit .projenrc.ts and run "pnpm exec projen".
|
|
2
2
|
|
|
3
|
+
overrides:
|
|
4
|
+
js-yaml@<3.15.2: 3.15.2
|
|
3
5
|
nodeLinker: hoisted
|
|
4
6
|
strictDepBuilds: true
|
|
5
7
|
resolutionMode: highest
|
|
@@ -8,6 +10,7 @@ minimumReleaseAgeExclude:
|
|
|
8
10
|
- "@alma-cdk/construct-library"
|
|
9
11
|
- jsii@6.0.9
|
|
10
12
|
- jsii-rosetta@6.0.9
|
|
13
|
+
- jsii-rosetta@6.0.16
|
|
11
14
|
trustPolicy: no-downgrade
|
|
12
15
|
trustPolicyExclude:
|
|
13
16
|
- jsii@5.9.33
|
|
@@ -16,10 +19,12 @@ trustPolicyExclude:
|
|
|
16
19
|
- jsii@6.0.8
|
|
17
20
|
- jsii@6.0.9
|
|
18
21
|
- jsii-rosetta@6.0.9
|
|
19
|
-
- jsii@5.9.
|
|
22
|
+
- jsii@5.9.3
|
|
23
|
+
- jsii@6.0.14
|
|
20
24
|
allowBuilds:
|
|
21
25
|
unrs-resolver: true
|
|
22
26
|
lefthook: true
|
|
23
27
|
esbuild: true
|
|
28
|
+
"@parcel/watcher": true
|
|
24
29
|
blockExoticSubdeps: true
|
|
25
30
|
trustPolicyIgnoreAfter: 20160
|