Skip to content

Commit bb2852c

Browse files
authored
Merge pull request #86 from ONS-Innovation/KEH-2566-Copilot-Lambda-Deployment-Bug
KEH-2566: Copilot Lambda pointed at v1.0.0
2 parents 345a861 + b1bfe3e commit bb2852c

7 files changed

Lines changed: 57 additions & 57 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
python-version: ["3.12"]
2323

2424
steps:
25-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
25+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
2626
with:
2727
persist-credentials: false
2828
- name: Install Poetry

.github/workflows/deploy_mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
deploy:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
14+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
1515
with:
1616
persist-credentials: false
1717
- name: Configure Git Credentials

.github/workflows/megalinter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
steps:
6767
# Git Checkout
6868
- name: Checkout Code
69-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
69+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
7070
with:
7171
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}
7272
persist-credentials: false

concourse/scripts/terraform_infra.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,5 @@ terraform apply \
4949
-var "github_org=$github_org" \
5050
-var "lambda_timeout=${lambda_timeout}" \
5151
-var "ecr_repository=${ecr_repository}" \
52+
-var "container_ver=${tag}" \
5253
-auto-approve

poetry.lock

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ botocore = "^1.40.2"
1515
certifi = "^2025.8.3"
1616
cffi = ">=2.0.0"
1717
charset-normalizer = "^3.4.2"
18-
cryptography = "^49.0.0"
18+
cryptography = "^50.0.0"
1919
idna = "^3.10"
2020
jmespath = "^1.0.1"
2121
pycparser = "^2.22"

terraform/variables.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ variable "ecr_repository" {
7979
variable "container_ver" {
8080
description = "Container tag"
8181
type = string
82-
default = "v1.0.0"
8382
}
8483

8584
variable "project_tag" {

0 commit comments

Comments
 (0)