Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/iac-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
if: env.HAS_LOCALSTACK_TOKEN == 'true'
env:
LOCALSTACK_AUTH_TOKEN: ${{ secrets.LOCALSTACK_AUTH_TOKEN }}
run: |

Check warning on line 134 in .github/workflows/iac-tests.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2034:warning:7:1: i appears unused. Verify use (or export if used externally) [shellcheck] Raw Output: w:.github/workflows/iac-tests.yml:134:9: shellcheck reported issue in this script: SC2034:warning:7:1: i appears unused. Verify use (or export if used externally) [shellcheck]
docker run -d --name localstack \
-p 4566:4566 \
-e LOCALSTACK_AUTH_TOKEN="$LOCALSTACK_AUTH_TOKEN" \
Expand All @@ -144,7 +144,7 @@
done

- name: Start GCP emulators
run: |

Check warning on line 147 in .github/workflows/iac-tests.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2034:warning:3:1: i appears unused. Verify use (or export if used externally) [shellcheck] Raw Output: w:.github/workflows/iac-tests.yml:147:9: shellcheck reported issue in this script: SC2034:warning:3:1: i appears unused. Verify use (or export if used externally) [shellcheck]
docker compose -f tests/iac/_gcp_emulator/docker-compose.yml up -d
# Health-check loops — the BQ emulator can take ~15s to be ready.
for i in $(seq 1 30); do
Expand Down Expand Up @@ -219,7 +219,7 @@
# AWS STS exchanges for credentials via an IAM role's trust
# policy. No long-lived secrets in the repo.
- name: Assume AWS role via OIDC
uses: aws-actions/configure-aws-credentials@254c19bd240aabef8777f48595e9d2d7b972184b # v6.2.1
uses: aws-actions/configure-aws-credentials@517a711dbcd0e402f90c77e7e2f81e849156e31d # v6.2.2
with:
role-to-assume: ${{ vars.AWS_OIDC_ROLE_ARN }}
aws-region: eu-west-1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-live.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
# ── AWS — OIDC role assumption, no static keys ──────────────────
- name: Configure AWS credentials via OIDC
if: steps.gate.outputs.aws == 'true'
uses: aws-actions/configure-aws-credentials@254c19bd240aabef8777f48595e9d2d7b972184b # v6.2.1
uses: aws-actions/configure-aws-credentials@517a711dbcd0e402f90c77e7e2f81e849156e31d # v6.2.2
with:
role-to-assume: ${{ secrets.AWS_INTEGRATION_ROLE }}
role-session-name: forge-live-${{ github.run_id }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ jobs:
# repo+ref combination. Returns short-lived temporary credentials.
- name: Configure AWS credentials via OIDC
if: steps.gate.outputs.enabled == 'true'
uses: aws-actions/configure-aws-credentials@254c19bd240aabef8777f48595e9d2d7b972184b # v6.2.1
uses: aws-actions/configure-aws-credentials@517a711dbcd0e402f90c77e7e2f81e849156e31d # v6.2.2
with:
role-to-assume: ${{ secrets.AWS_INTEGRATION_ROLE }}
role-session-name: forge-ci-${{ github.run_id }}
Expand Down
Loading