File tree 6 files changed +20
-20
lines changed 6 files changed +20
-20
lines changed Original file line number Diff line number Diff line change 12
12
jobs :
13
13
prepare :
14
14
name : Calculate Version and Build number
15
- runs-on : ubuntu-24 .04
15
+ runs-on : ubuntu-22 .04
16
16
17
17
outputs :
18
18
build_number : ${{ steps.short_sha.outputs.value }}
42
42
if : needs.prepare.outputs.new_release == 'true'
43
43
44
44
name : Dev and Draft Releases
45
- runs-on : ubuntu-24 .04
45
+ runs-on : ubuntu-22 .04
46
46
47
47
needs :
48
48
- prepare
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ permissions:
30
30
jobs :
31
31
cancel_previous :
32
32
name : ' Cancel Previous Runs'
33
- runs-on : ubuntu-24 .04
33
+ runs-on : ubuntu-22 .04
34
34
timeout-minutes : 3
35
35
36
36
steps :
42
42
43
43
prepare :
44
44
name : Prepare
45
- runs-on : ubuntu-24 .04
45
+ runs-on : ubuntu-22 .04
46
46
47
47
needs :
48
48
- cancel_previous
58
58
59
59
build-command :
60
60
name : Build and push the COMMAND version
61
- runs-on : ubuntu-24 .04
61
+ runs-on : ubuntu-22 .04
62
62
63
63
needs :
64
64
- prepare
@@ -120,7 +120,7 @@ jobs:
120
120
121
121
build-lambda :
122
122
name : Build and push LAMBDA version
123
- runs-on : ubuntu-24 .04
123
+ runs-on : ubuntu-22 .04
124
124
125
125
needs :
126
126
- prepare
@@ -182,7 +182,7 @@ jobs:
182
182
183
183
update-manifests :
184
184
name : Update AWS Marketplace
185
- runs-on : ubuntu-24 .04
185
+ runs-on : ubuntu-22 .04
186
186
187
187
needs :
188
188
- prepare
@@ -219,7 +219,7 @@ jobs:
219
219
runs-on :
220
220
# - self-hosted
221
221
# - large
222
- - ubuntu-24 .04
222
+ - ubuntu-22 .04
223
223
224
224
steps :
225
225
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ permissions:
26
26
jobs :
27
27
cancel_previous :
28
28
name : ' Cancel Previous Runs'
29
- runs-on : ubuntu-24 .04
29
+ runs-on : ubuntu-22 .04
30
30
timeout-minutes : 3
31
31
32
32
steps :
37
37
38
38
validate :
39
39
name : Validate
40
- runs-on : ubuntu-24 .04
40
+ runs-on : ubuntu-22 .04
41
41
42
42
needs :
43
43
- cancel_previous
68
68
69
69
static-analysis :
70
70
name : Static Analysis
71
- runs-on : ubuntu-24 .04
71
+ runs-on : ubuntu-22 .04
72
72
73
73
steps :
74
74
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ permissions:
26
26
jobs :
27
27
cancel_previous :
28
28
name : ' Cancel Previous Runs'
29
- runs-on : ubuntu-24 .04
29
+ runs-on : ubuntu-22 .04
30
30
timeout-minutes : 3
31
31
32
32
steps :
38
38
39
39
prepare :
40
40
name : Prepare
41
- runs-on : ubuntu-24 .04
41
+ runs-on : ubuntu-22 .04
42
42
43
43
needs :
44
44
- cancel_previous
68
68
69
69
docker-tag-command :
70
70
name : Docker Tag and Push COMMAND version
71
- runs-on : ubuntu-24 .04
71
+ runs-on : ubuntu-22 .04
72
72
73
73
needs :
74
74
- prepare
92
92
93
93
docker-tag-lambda :
94
94
name : Docker Tag and Push LAMBDA version
95
- runs-on : ubuntu-24 .04
95
+ runs-on : ubuntu-22 .04
96
96
97
97
needs :
98
98
- prepare
@@ -116,7 +116,7 @@ jobs:
116
116
117
117
update-manifests :
118
118
name : Update AWS Marketplace
119
- runs-on : ubuntu-24 .04
119
+ runs-on : ubuntu-22 .04
120
120
121
121
needs :
122
122
- prepare
Original file line number Diff line number Diff line change 1
1
# ================================
2
2
# Build image
3
3
# ================================
4
- FROM swift:5.9 -jammy as builder
4
+ FROM swift:6.1 -jammy as builder
5
5
6
6
# Set up a build area
7
7
WORKDIR /build
@@ -32,7 +32,7 @@ RUN find -L "$(swift build --package-path /build -c release --show-bin-path)/" -
32
32
# ================================
33
33
# Run image
34
34
# ================================
35
- FROM swift:5.9 -jammy-slim
35
+ FROM swift:6.1 -jammy-slim
36
36
37
37
LABEL org.opencontainers.image.source https://github.com/ydataai/aws-asg-tags-lambda
38
38
Original file line number Diff line number Diff line change 1
1
# ================================
2
2
# Build image
3
3
# ================================
4
- FROM swift:5.9 -amazonlinux2 as builder
4
+ FROM swift:6.1 -amazonlinux2 as builder
5
5
6
6
# Set up a build area
7
7
WORKDIR /build
@@ -32,7 +32,7 @@ RUN find -L "$(swift build --package-path /build -c release --show-bin-path)/" -
32
32
# ================================
33
33
# Run image
34
34
# ================================
35
- FROM swift:5.9 -amazonlinux2-slim
35
+ FROM swift:6.1 -amazonlinux2-slim
36
36
37
37
LABEL org.opencontainers.image.source https://github.com/ydataai/aws-asg-tags-lambda
38
38
You can’t perform that action at this time.
0 commit comments