diff --git a/incubating/aws-sts-assume-role-with-web-identity/step.yaml b/incubating/aws-sts-assume-role-with-web-identity/step.yaml index 5a1924da4..b8a265d98 100644 --- a/incubating/aws-sts-assume-role-with-web-identity/step.yaml +++ b/incubating/aws-sts-assume-role-with-web-identity/step.yaml @@ -1,7 +1,7 @@ version: '1.0' kind: step-type metadata: - version: 1.1.0 + version: 1.0.0 name: aws-sts-assume-role-with-web-identity description: >- Obtain AWS STS credentials using OIDC ID token and export them as environment variables @@ -121,7 +121,7 @@ spec: stepsTemplate: |- main: name: aws-sts-assume-role-with-web-identity - image: quay.io/jland/aws-cli:2.8.12 + image: mikesir87/aws-cli environment: [[ range $key, $val := .Arguments ]] - '[[ $key ]]=[[ $val ]]' diff --git a/incubating/obtain-oidc-id-token/step.yaml b/incubating/obtain-oidc-id-token/step.yaml index 97fcb9f1f..31e59d7df 100644 --- a/incubating/obtain-oidc-id-token/step.yaml +++ b/incubating/obtain-oidc-id-token/step.yaml @@ -1,7 +1,7 @@ version: '1.0' kind: step-type metadata: - version: 1.2.0 + version: 1.1.2 name: obtain-oidc-id-token description: >- Obtain ID token from Codefresh OIDC Provider @@ -107,12 +107,13 @@ spec: steps: main: name: obtain-oidc-id-token - image: quay.io/ferdi/ci-utils:latest + image: quay.io/curl/curl-base environment: - 'AUDIENCE=${{AUDIENCE}}' commands: - | - + apk add jq + URL="$CF_OIDC_REQUEST_URL" # This means that audience was provided by the user