Skip to content

Commit

Permalink
test 3.4 for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tsusdere committed Jan 4, 2024
1 parent 8dd7a80 commit 48da3d2
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-gem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
ruby-version: "3.4"
- name: Build gem
run: |
gem build github-pages.gemspec
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ jobs:
matrix:
ruby:
- 3.0
- 3.1
- 3.2
- 3.4.22
steps:
- uses: actions/checkout@v4
- name: script/cibuild-docker
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2
3.4.22
6 changes: 1 addition & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
language: ruby
rvm:
- 2.5
- 2.6
- 2.7
- 3.0
- 3.1
- 3.2
- 3.4.22

branches:
only:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG RUBY_VERSION=3.2
ARG RUBY_VERSION=3.4.22
FROM ruby:$RUBY_VERSION

RUN apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.2-alpine
FROM ruby:3.4.22-alpine

RUN apk update && apk add --no-cache \
git
Expand Down
2 changes: 1 addition & 1 deletion script/cibuild-docker
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -ex

# Set the ruby version in the Action definition matrix.
: "${RUBY_VERSION:="3.2"}"
: "${RUBY_VERSION:="3.4.22"}"

docker build --build-arg "RUBY_VERSION=$RUBY_VERSION" -t github-pages .
docker run --rm --workdir /src/gh/pages-gem github-pages script/cibuild

0 comments on commit 48da3d2

Please sign in to comment.