Skip to content

Commit 92610ca

Browse files
authored
Fix the CI matrix (#655)
The Gemfile is using the "~>" operator to install Rack, that way we always get the latest available version for a given version. The current versions in the CI matrix are using only major and minor version (like 3.2), meaning bundler will install the latest available minor version (meaning if a version 3.3 is released it will be installed instead of the 3.2 series). To fix that, it’s just a matter of providing a patch level. So providing 3.2.0 will only install 3.2 versions, as wanted.
1 parent b55de0b commit 92610ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
fail-fast: false
2828
matrix:
2929
ruby: ["3.4", "3.3", "3.2"]
30-
rack: ["2.2", "3.1", "3.2"]
30+
rack: ["2.2.0", "3.1.0", "3.2.0"]
3131
env:
3232
RACK_VERSION: ${{ matrix.rack }}
3333
steps:

0 commit comments

Comments
 (0)