Skip to content

Commit 16f5bea

Browse files
committed
fix dockerfile linter warning
1 parent 6dc1eb1 commit 16f5bea

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on: [push]
55
jobs:
66
codecov:
77
container:
8-
image: swift:5.10
8+
image: swift:6.1
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v3

.github/workflows/tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515
image:
1616
- swift:5.10-focal
1717
- swift:5.10-jammy
18+
- swift:6.1-focal
19+
- swift:6.1-jammy
1820
container: ${{ matrix.image }}
1921
steps:
2022
- name: Checkout code

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
FROM swift:5.10 as builder
2+
FROM swift:6.1 AS builder
33

44
# Install OS updates and, if needed, sqlite3
55
RUN export DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true \
@@ -52,7 +52,7 @@ RUN bin_path="$(swift build --package-path /build -c release --show-bin-path)" \
5252
## Production image
5353
#
5454

55-
FROM swift:5.10
55+
FROM swift:6.1
5656

5757
# DEBIAN_FRONTEND=noninteractive for automatic UTC configuration in tzdata
5858
# Make sure all system packages are up to date.

0 commit comments

Comments
 (0)