Skip to content

Commit 38bafbb

Browse files
Merge branch 'develop' into ci-changelog-10665052229
2 parents a0fe449 + 8f76c7f commit 38bafbb

File tree

7 files changed

+42
-19
lines changed

7 files changed

+42
-19
lines changed

.github/workflows/pre-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ jobs:
232232

233233
- name: Upload to PyPi prod
234234
if: ${{ !inputs.skip_pypi }}
235-
uses: pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0 # v1.9.0
235+
uses: pypa/gh-action-pypi-publish@8a08d616893759ef8e1aa1f2785787c0b97e20d6 # v1.10.0
236236

237237
# Creates a PR with the latest version we've just released
238238
# since our trunk is protected against any direct pushes from automation

.github/workflows/release-v3.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,12 +237,12 @@ jobs:
237237

238238
- name: Upload to PyPi prod
239239
if: ${{ !inputs.skip_pypi }}
240-
uses: pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0 # v1.9.0
240+
uses: pypa/gh-action-pypi-publish@8a08d616893759ef8e1aa1f2785787c0b97e20d6 # v1.10.0
241241

242242
# PyPi test maintenance affected us numerous times, leaving for history purposes
243243
# - name: Upload to PyPi test
244244
# if: ${{ !inputs.skip_pypi }}
245-
# uses: pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0 # v1.9.0
245+
# uses: pypa/gh-action-pypi-publish@8a08d616893759ef8e1aa1f2785787c0b97e20d6 # v1.10.0
246246
# with:
247247
# repository-url: https://test.pypi.org/legacy/
248248

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,12 +237,12 @@ jobs:
237237

238238
- name: Upload to PyPi prod
239239
if: ${{ !inputs.skip_pypi }}
240-
uses: pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0 # v1.9.0
240+
uses: pypa/gh-action-pypi-publish@8a08d616893759ef8e1aa1f2785787c0b97e20d6 # v1.10.0
241241

242242
# PyPi test maintenance affected us numerous times, leaving for history purposes
243243
# - name: Upload to PyPi test
244244
# if: ${{ !inputs.skip_pypi }}
245-
# uses: pypa/gh-action-pypi-publish@ec4db0b4ddc65acdf4bff5fa45ac92d78b56bdf0 # v1.9.0
245+
# uses: pypa/gh-action-pypi-publish@8a08d616893759ef8e1aa1f2785787c0b97e20d6 # v1.10.0
246246
# with:
247247
# repository-url: https://test.pypi.org/legacy/
248248

.github/workflows/reusable_deploy_v3_sar.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,29 @@ env:
4242
RELEASE_COMMIT: ${{ github.sha }} # it gets propagated from the caller for security reasons
4343

4444
on:
45+
workflow_dispatch:
46+
inputs:
47+
stage:
48+
description: "Deployment stage (BETA, PROD)"
49+
required: true
50+
type: string
51+
package-version:
52+
description: "The version of the package to deploy"
53+
required: true
54+
type: string
55+
environment:
56+
description: "GitHub Environment to use for encrypted secrets"
57+
required: true
58+
type: string
59+
source_code_artifact_name:
60+
description: "Artifact name to restore sealed source code"
61+
type: string
62+
required: true
63+
source_code_integrity_hash:
64+
description: "Sealed source code integrity hash"
65+
type: string
66+
required: true
67+
4568
workflow_call:
4669
inputs:
4770
stage:

docs/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# v9.1.18
2-
FROM squidfunk/mkdocs-material@sha256:7132ca3957c1fc325443579356fcc68696cd1aa54c715ce61228ea5e0b2d427a
2+
FROM squidfunk/mkdocs-material@sha256:a2e3a31c00cfe1dd2dae83ba21dbfa2c04aee2fa2414275c230c27b91a4eda09
33
# pip-compile --generate-hashes --output-file=requirements.txt requirements.in
44
COPY requirements.txt /tmp/
55
RUN pip install --require-hashes -r /tmp/requirements.txt

poetry.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ xenon = "^0.9.1"
7070
mkdocs-git-revision-date-plugin = "^0.3.2"
7171
mike = "^2.1.2"
7272
pytest-xdist = "^3.6.1"
73-
aws-cdk-lib = "^2.154.1"
73+
aws-cdk-lib = "^2.155.0"
7474
"aws-cdk.aws-apigatewayv2-alpha" = "^2.38.1-alpha.0"
7575
"aws-cdk.aws-apigatewayv2-integrations-alpha" = "^2.38.1-alpha.0"
7676
"aws-cdk.aws-apigatewayv2-authorizers-alpha" = "^2.38.1-alpha.0"
7777
"aws-cdk.aws-lambda-python-alpha" = "^2.154.1a0"
78-
"cdklabs.generative-ai-cdk-constructs" = "^0.1.261"
78+
"cdklabs.generative-ai-cdk-constructs" = "^0.1.262"
7979
pytest-benchmark = "^4.0.0"
8080
mypy-boto3-appconfig = "^1.35.8"
8181
mypy-boto3-cloudformation = "^1.35.0"
@@ -89,7 +89,7 @@ mypy-boto3-s3 = "^1.35.2"
8989
mypy-boto3-xray = "^1.35.0"
9090
types-requests = "^2.31.0"
9191
typing-extensions = "^4.12.2"
92-
mkdocs-material = "^9.5.33"
92+
mkdocs-material = "^9.5.34"
9393
filelock = "^3.15.4"
9494
checksumdir = "^1.2.0"
9595
mypy-boto3-appconfigdata = "^1.35.0"

0 commit comments

Comments
 (0)