Skip to content

Commit 68cacac

Browse files
committed
update ruby version
1 parent 42e9d0d commit 68cacac

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
rubocop:
88
name: Lint (Rubocop)
99
runs-on: ubuntu-24.04
10-
container: ruby:3.1
10+
container: ruby:3.3-trixie
1111
steps:
1212
- name: Checkout
1313
uses: actions/checkout@v2
@@ -18,7 +18,7 @@ jobs:
1818
shellcheck:
1919
name: Lint (Shellcheck)
2020
runs-on: ubuntu-24.04
21-
container: debian:10
21+
container: debian:trixie
2222
steps:
2323
- name: Checkout
2424
uses: actions/checkout@v2
@@ -31,7 +31,7 @@ jobs:
3131
outputs:
3232
GEM_VERSION: ${{ steps.set-metadata.outputs.GEM_VERSION }}
3333
runs-on: ubuntu-24.04
34-
container: ruby:3.1
34+
container: ruby:3.3-trixie
3535
steps:
3636
- name: Update Rubygems and Bundler
3737
run: |
@@ -203,7 +203,7 @@ jobs:
203203
run: |
204204
case ${{ matrix.libc }} in
205205
gnu)
206-
echo 'ruby:3.1'
206+
echo 'ruby:3.3-trixie'
207207
;;
208208
musl)
209209
echo 'ruby:3.1-alpine'
@@ -308,6 +308,9 @@ jobs:
308308
- image: ruby:3.3-alpine
309309
version: '3.3'
310310
libc: musl
311+
- image: ruby:3.3-trixie
312+
version: '3.3'
313+
libc: gnu
311314
name: Test (ruby) (${{ matrix.container.version }}, ${{ matrix.platform }}, ${{ matrix.container.libc }})
312315
needs: build-ruby
313316
runs-on: ubuntu-24.04

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG RUBY_VERSION=3.1
1+
ARG RUBY_VERSION=3.3
22
FROM ruby:${RUBY_VERSION}
33

44
RUN test ! -f /etc/alpine-release || apk add --no-cache build-base bash python3 git curl tar ccache clang

0 commit comments

Comments
 (0)