Skip to content

Commit bb6f114

Browse files
committed
Pin Windows Ruby to 3.2.2
A recent update to the Ruby GitHub Action added Ruby 3.2.3 for Windows: ruby/setup-ruby@591bd21 That version of Ruby for Windows bundles OpenSSL 3.2. We bundle OpenSSL 3.0 in puppet-agent and the discrepancy between the two versions of OpenSSL is causing some SSL tests to fail. This commit pins the Ruby version for GitHub runners used in spec tests to 3.2.2.
1 parent 3192f4a commit bb6f114

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/rspec_tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
cfg:
1919
- {os: ubuntu-latest, ruby: '3.1'}
2020
- {os: ubuntu-20.04, ruby: '3.2'} # openssl 1.1.1
21-
- {os: ubuntu-22.04, ruby: '3.2'} # openssl 3
21+
- {os: ubuntu-22.04, ruby: '3.2'} # openssl 3.0
2222
- {os: ubuntu-latest, ruby: 'jruby-9.4.3.0'}
2323
- {os: windows-2019, ruby: '3.1'}
24-
- {os: windows-2019, ruby: '3.2'} # openssl 3
24+
- {os: windows-2019, ruby: '3.2.2'} # openssl 3.0
2525

2626
runs-on: ${{ matrix.cfg.os }}
2727
steps:

0 commit comments

Comments
 (0)