Skip to content

Commit 2162d34

Browse files
drernieclaude
andauthored
fix(ci): use correct AWS account for OIDC role (#249)
* fix(ci): use correct AWS account for OIDC role (730278974607) The GitHub-benchling-webhook OIDC role exists in account 730278974607, not 712023778557. The ECR repository remains in 712023778557, which is a cross-account scenario where the role in 730278974607 has permissions to push to ECR in 712023778557. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * future spec * chore(release): update CHANGELOG for v0.8.3 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> * chore: bump version to 0.8.3 Co-Authored-By: Claude <noreply@anthropic.com> --------- Co-authored-by: Claude <noreply@anthropic.com>
1 parent a327d66 commit 2162d34

File tree

7 files changed

+382
-6
lines changed

7 files changed

+382
-6
lines changed

.github/workflows/prod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- name: Configure AWS credentials (OIDC)
5151
uses: aws-actions/configure-aws-credentials@v5
5252
with:
53-
role-to-assume: arn:aws:iam::712023778557:role/github/GitHub-benchling-webhook
53+
role-to-assume: arn:aws:iam::730278974607:role/github/GitHub-benchling-webhook
5454
aws-region: us-east-1
5555

5656
- name: Set up Docker Buildx
@@ -106,7 +106,7 @@ jobs:
106106
- name: Configure AWS credentials (OIDC)
107107
uses: aws-actions/configure-aws-credentials@v5
108108
with:
109-
role-to-assume: arn:aws:iam::712023778557:role/github/GitHub-benchling-webhook
109+
role-to-assume: arn:aws:iam::730278974607:role/github/GitHub-benchling-webhook
110110
aws-region: us-east-1
111111

112112
- name: Validate image architecture

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55

66
## [Unreleased]
77

8+
## [0.8.3] - 2025-11-18
9+
10+
### Fixed
11+
12+
- Production workflow OIDC role now uses correct AWS account (730278974607) for authentication
13+
814
## [0.8.2] - 2025-11-18
915

1016
### Added

docker/app-manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ manifestVersion: 1
22
info:
33
name: quilt-docker
44
description: Packaging Benchling Notebooks as Quilt packages
5-
version: 0.8.2
5+
version: 0.8.3
66
features:
77
- name: Quilt Connector
88
id: quilt_entry

docker/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "benchling-quilt-integration"
7-
version = "0.8.2"
7+
version = "0.8.3"
88
description = "Benchling-Quilt Integration Webhook Service"
99
license = {text = "MIT"}
1010
authors = [

docker/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@quiltdata/benchling-webhook",
3-
"version": "0.8.2",
3+
"version": "0.8.3",
44
"description": "AWS CDK deployment for Benchling webhook processing using Fargate - Deploy directly with npx",
55
"main": "dist/lib/index.js",
66
"types": "dist/lib/index.d.ts",

0 commit comments

Comments
 (0)