You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/release-automation.yaml
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,10 @@ on:
3
3
workflow_dispatch:
4
4
workflow_call:
5
5
6
+
permissions:
7
+
id-token: write
8
+
contents: write
9
+
6
10
jobs:
7
11
get-latest-tag:
8
12
name: Get the latest release tag
@@ -62,7 +66,7 @@ jobs:
62
66
# This is required for configure-aws-credentials to request an OIDC JWT ID token to access AWS resources later on.
63
67
# More info: https://docs.github.com/en/actions/deployment/security-hardening-your-deployments/about-security-hardening-with-openid-connect#adding-permissions-settings
64
68
id-token: write
65
-
contents: read# this is required for actions/checkout
69
+
contents: write# this is required for actions/checkout
66
70
secrets: inherit
67
71
with:
68
72
ref_name: ${{ needs.get-latest-tag.outputs.tag }}
@@ -74,7 +78,7 @@ jobs:
74
78
# This is required for configure-aws-credentials to request an OIDC JWT ID token to access AWS resources later on.
75
79
# More info: https://docs.github.com/en/actions/deployment/security-hardening-your-deployments/about-security-hardening-with-openid-connect#adding-permissions-settings
76
80
id-token: write
77
-
contents: read# this is required for actions/checkout
81
+
contents: write# this is required for actions/checkout
0 commit comments