Skip to content

Commit 61bf100

Browse files
chore(deps): update swift docker tag to v6
1 parent 09f2e76 commit 61bf100

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
lines changed

.github/workflows/merge-main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
prepare:
1414
name: Calculate Version and Build number
15-
runs-on: ubuntu-24.04
15+
runs-on: ubuntu-22.04
1616

1717
outputs:
1818
build_number: ${{ steps.short_sha.outputs.value }}
@@ -42,7 +42,7 @@ jobs:
4242
if: needs.prepare.outputs.new_release == 'true'
4343

4444
name: Dev and Draft Releases
45-
runs-on: ubuntu-24.04
45+
runs-on: ubuntu-22.04
4646

4747
needs:
4848
- prepare

.github/workflows/prereleased.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ permissions:
3030
jobs:
3131
cancel_previous:
3232
name: 'Cancel Previous Runs'
33-
runs-on: ubuntu-24.04
33+
runs-on: ubuntu-22.04
3434
timeout-minutes: 3
3535

3636
steps:
@@ -42,7 +42,7 @@ jobs:
4242

4343
prepare:
4444
name: Prepare
45-
runs-on: ubuntu-24.04
45+
runs-on: ubuntu-22.04
4646

4747
needs:
4848
- cancel_previous
@@ -58,7 +58,7 @@ jobs:
5858

5959
build-command:
6060
name: Build and push the COMMAND version
61-
runs-on: ubuntu-24.04
61+
runs-on: ubuntu-22.04
6262

6363
needs:
6464
- prepare
@@ -120,7 +120,7 @@ jobs:
120120
121121
build-lambda:
122122
name: Build and push LAMBDA version
123-
runs-on: ubuntu-24.04
123+
runs-on: ubuntu-22.04
124124

125125
needs:
126126
- prepare
@@ -182,7 +182,7 @@ jobs:
182182
183183
update-manifests:
184184
name: Update AWS Marketplace
185-
runs-on: ubuntu-24.04
185+
runs-on: ubuntu-22.04
186186

187187
needs:
188188
- prepare
@@ -219,7 +219,7 @@ jobs:
219219
runs-on:
220220
#- self-hosted
221221
#- large
222-
- ubuntu-24.04
222+
- ubuntu-22.04
223223

224224
steps:
225225
- uses: actions/checkout@v4

.github/workflows/pull-request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ permissions:
2626
jobs:
2727
cancel_previous:
2828
name: 'Cancel Previous Runs'
29-
runs-on: ubuntu-24.04
29+
runs-on: ubuntu-22.04
3030
timeout-minutes: 3
3131

3232
steps:
@@ -37,7 +37,7 @@ jobs:
3737

3838
validate:
3939
name: Validate
40-
runs-on: ubuntu-24.04
40+
runs-on: ubuntu-22.04
4141

4242
needs:
4343
- cancel_previous
@@ -68,7 +68,7 @@ jobs:
6868

6969
static-analysis:
7070
name: Static Analysis
71-
runs-on: ubuntu-24.04
71+
runs-on: ubuntu-22.04
7272

7373
steps:
7474
- uses: actions/checkout@v4

.github/workflows/released.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ permissions:
2626
jobs:
2727
cancel_previous:
2828
name: 'Cancel Previous Runs'
29-
runs-on: ubuntu-24.04
29+
runs-on: ubuntu-22.04
3030
timeout-minutes: 3
3131

3232
steps:
@@ -38,7 +38,7 @@ jobs:
3838

3939
prepare:
4040
name: Prepare
41-
runs-on: ubuntu-24.04
41+
runs-on: ubuntu-22.04
4242

4343
needs:
4444
- cancel_previous
@@ -68,7 +68,7 @@ jobs:
6868

6969
docker-tag-command:
7070
name: Docker Tag and Push COMMAND version
71-
runs-on: ubuntu-24.04
71+
runs-on: ubuntu-22.04
7272

7373
needs:
7474
- prepare
@@ -92,7 +92,7 @@ jobs:
9292
9393
docker-tag-lambda:
9494
name: Docker Tag and Push LAMBDA version
95-
runs-on: ubuntu-24.04
95+
runs-on: ubuntu-22.04
9696

9797
needs:
9898
- prepare
@@ -116,7 +116,7 @@ jobs:
116116
117117
update-manifests:
118118
name: Update AWS Marketplace
119-
runs-on: ubuntu-24.04
119+
runs-on: ubuntu-22.04
120120

121121
needs:
122122
- prepare

command.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ================================
22
# Build image
33
# ================================
4-
FROM swift:5.9-jammy as builder
4+
FROM swift:6.1-jammy as builder
55

66
# Set up a build area
77
WORKDIR /build
@@ -32,7 +32,7 @@ RUN find -L "$(swift build --package-path /build -c release --show-bin-path)/" -
3232
# ================================
3333
# Run image
3434
# ================================
35-
FROM swift:5.9-jammy-slim
35+
FROM swift:6.1-jammy-slim
3636

3737
LABEL org.opencontainers.image.source https://github.com/ydataai/aws-asg-tags-lambda
3838

lambda.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ================================
22
# Build image
33
# ================================
4-
FROM swift:5.9-amazonlinux2 as builder
4+
FROM swift:6.1-amazonlinux2 as builder
55

66
# Set up a build area
77
WORKDIR /build
@@ -32,7 +32,7 @@ RUN find -L "$(swift build --package-path /build -c release --show-bin-path)/" -
3232
# ================================
3333
# Run image
3434
# ================================
35-
FROM swift:5.9-amazonlinux2-slim
35+
FROM swift:6.1-amazonlinux2-slim
3636

3737
LABEL org.opencontainers.image.source https://github.com/ydataai/aws-asg-tags-lambda
3838

0 commit comments

Comments
 (0)