File tree Expand file tree Collapse file tree 10 files changed +39
-32
lines changed Expand file tree Collapse file tree 10 files changed +39
-32
lines changed Original file line number Diff line number Diff line change 5
5
- " *"
6
6
paths-ignore :
7
7
- ' client/web/**'
8
+ - " backend/**"
8
9
jobs :
9
10
build :
10
11
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 6
6
- " *"
7
7
paths-ignore :
8
8
- ' client/web/**'
9
+ - " backend/**"
9
10
jobs :
10
11
test :
11
12
runs-on : ubuntu-latest
19
20
- name : Setup Python
20
21
uses : actions/setup-python@v2
21
22
with :
22
- python-version : " 3.10 "
23
+ python-version : " 3.11 "
23
24
24
25
- name : Install pipenv
25
26
run : |
Original file line number Diff line number Diff line change 7
7
- closed
8
8
paths-ignore :
9
9
- ' client/web/**'
10
+ - " backend/**"
10
11
permissions :
11
12
id-token : write # This is required for aws oidc connection
12
13
contents : read # This is required for actions/checkout
28
29
- name : Set up Python
29
30
uses : actions/setup-python@v2
30
31
with :
31
- python-version : " 3.10 "
32
+ python-version : " 3.11 "
32
33
33
34
- name : Install Lambda (Python) dependencies
34
35
run : |
51
52
- name : Setup Terraform
52
53
uses : hashicorp/setup-terraform@v2
53
54
with :
54
- terraform_version : 1.11.2
55
+ terraform_version : 1.12.1
55
56
56
57
- name : Terraform fmt
57
58
id : fmt
Original file line number Diff line number Diff line change
1
+ inventory.ini
2
+
1
3
# Byte-compiled / optimized / DLL files
2
4
__pycache__ /
3
5
* .py [cod ]
Original file line number Diff line number Diff line change 1
- 3.10
1
+ 3.11
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ black = "*"
15
15
tomli = " *"
16
16
17
17
[requires ]
18
- python_version = " 3.10 "
18
+ python_version = " 3.11 "
19
19
20
20
[scripts ]
21
21
test = " pytest test/ -v"
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ Resources:
25
25
Properties :
26
26
CodeUri : src/
27
27
Handler : app.lambda_handler
28
- Runtime : python3.10
28
+ Runtime : python3.11
29
29
Timeout : 5
30
30
Architectures :
31
31
- x86_64
Original file line number Diff line number Diff line change @@ -2,23 +2,23 @@ terraform {
2
2
required_providers {
3
3
aws = {
4
4
source = " hashicorp/aws"
5
- version = " 5.92 .0"
5
+ version = " 5.98 .0"
6
6
}
7
7
random = {
8
8
source = " hashicorp/random"
9
- version = " 3.7.1 "
9
+ version = " 3.7.2 "
10
10
}
11
11
archive = {
12
12
source = " hashicorp/archive"
13
- version = " 2.7.0 "
13
+ version = " 2.7.1 "
14
14
}
15
15
local = {
16
16
source = " hashicorp/local"
17
17
version = " 2.5.2"
18
18
}
19
19
}
20
20
21
- required_version = " 1.11.2 "
21
+ required_version = " 1.12.1 "
22
22
}
23
23
24
24
provider "aws" {
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ variable "region" {
17
17
18
18
variable "python_runtime" {
19
19
type = string
20
- default = " python3.10 "
20
+ default = " python3.11 "
21
21
description = " runtime on which lambda python code will run"
22
22
}
23
23
You can’t perform that action at this time.
0 commit comments