Skip to content

Commit 7958a89

Browse files
spuuncarlhoerberg
authored andcommitted
Use crystal 1.15.1
1 parent 3bb55c6 commit 7958a89

9 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
lint:
2525
runs-on: ubuntu-latest
2626
timeout-minutes: 10
27-
container: 84codes/crystal:1.13.2-ubuntu-22.04
27+
container: 84codes/crystal:1.15.1-ubuntu-22.04
2828
steps:
2929
- uses: actions/checkout@v4
3030
- run: shards install
@@ -33,7 +33,7 @@ jobs:
3333
format:
3434
runs-on: ubuntu-latest
3535
timeout-minutes: 10
36-
container: 84codes/crystal:1.13.2-ubuntu-22.04
36+
container: 84codes/crystal:1.15.1-ubuntu-22.04
3737
steps:
3838
- uses: actions/checkout@v4
3939
- run: crystal tool format --check

.github/workflows/packages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
tar:
1818
runs-on: ubuntu-latest
1919
container:
20-
image: 84codes/crystal:1.13.2-alpine
20+
image: 84codes/crystal:1.15.1-alpine
2121
steps:
2222
- uses: actions/checkout@v4
2323
- name: Install Dependencies
@@ -59,7 +59,7 @@ jobs:
5959
file: deb.Dockerfile
6060
platforms: linux/amd64,linux/arm64
6161
build-args: |
62-
image=84codes/crystal:1.13.2-${{ matrix.os }}
62+
image=84codes/crystal:1.15.1-${{ matrix.os }}
6363
outputs: builds
6464

6565
- name: Upload GitHub artifact

.github/workflows/rpm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
file: Dockerfile.rpm
6161
platforms: linux/amd64,linux/arm64
6262
build-args: |
63-
build_image=84codes/crystal:1.13.2-${{ matrix.os }}
63+
build_image=84codes/crystal:1.15.1-${{ matrix.os }}
6464
version=${{ env.version }}
6565
outputs: RPMS
6666

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM 84codes/crystal:1.13.2-alpine AS builder
1+
FROM 84codes/crystal:1.15.1-alpine AS builder
22
WORKDIR /tmp
33
COPY shard.yml shard.lock ./
44
RUN shards install --production

Dockerfile.rpm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG build_image=84codes/crystal:1.13.2-fedora-39
1+
ARG build_image=84codes/crystal:1.15.1-fedora-39
22

33
FROM $build_image AS builder
44
RUN dnf install -y --nodocs --setopt=install_weak_deps=False --repo=fedora,updates \

deb.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG image=84codes/crystal:1.13.2-debian-11
1+
ARG image=84codes/crystal:1.15.1-debian-11
22
FROM $image AS builder
33
RUN apt-get update && \
44
env DEBIAN_FRONTEND=noninteractive apt-get install -y dpkg help2man lintian

shard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ development_dependencies:
1818
ameba:
1919
github: crystal-ameba/ameba
2020

21-
crystal: 1.13.2
21+
crystal: 1.15.1
2222
license: MIT

spec/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM 84codes/crystal:1.13.2-ubuntu-22.04
1+
FROM 84codes/crystal:1.15.1-ubuntu-22.04
22

33
RUN apt-get update && apt-get install -y rabbitmq-server
44

tar.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM 84codes/crystal:1.13.2-alpine AS builder
1+
FROM 84codes/crystal:1.15.1-alpine AS builder
22
WORKDIR /usr/src/amqproxy
33
COPY shard.yml shard.lock ./
44
RUN shards install --production

0 commit comments

Comments
 (0)