Skip to content

Commit

Permalink
ci: Test against Ruby v3.3 (#171)
Browse files Browse the repository at this point in the history
* ci: Test against Ruby v3.3

* fix: Fix ruby v3.3 image build error

```
Error response from daemon: manifest for ruby:3.3-buster not found: manifest unknown: manifest unknown
ERROR: Command 'dip bundle install' executed with error
```

Remove `buster` suffix.
  • Loading branch information
toshimaru committed Mar 14, 2024
1 parent a8cfb1c commit d3d4396
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: [ '2.7', '3.0', '3.1', '3.2' ]
ruby: [ '2.7', '3.0', '3.1', '3.2', '3.3' ]
env:
RUBY_IMAGE: ${{ matrix.ruby }} # The image used in the Dockerfile
name: Ruby ${{ matrix.ruby }}
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
app:
image: ruby:${RUBY_IMAGE:-3.2}-buster
image: ruby:${RUBY_IMAGE:-3.2}
environment:
- GEM_HOME=/bundle
- BUNDLE_PATH=/bundle
Expand Down

0 comments on commit d3d4396

Please sign in to comment.