Skip to content

Commit

Permalink
🐛 Increase key size for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jandudulski committed Jan 12, 2023
1 parent 4d16485 commit 0f21fa6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: [2.7, '3.0', '3.1']
ruby: [2.7, '3.0', '3.1', '3.2']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion test/integration/ssl_server.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

name = "/C=US/ST=SomeState/L=SomeCity/O=Organization/OU=Unit/CN=localhost"
ca = OpenSSL::X509::Name.parse(name)
key = OpenSSL::PKey::RSA.new(1024)
key = OpenSSL::PKey::RSA.new(2048)
crt = OpenSSL::X509::Certificate.new
crt.version = 2
crt.serial = 1
Expand Down

0 comments on commit 0f21fa6

Please sign in to comment.