-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* maint-3.2: Ruby/OpenSSL 3.2.1 Configure RubyGems Trusted Publishing Ruby/OpenSSL 3.1.1 Ruby/OpenSSL 3.0.3 digest: make output buffer String independent in #finish cipher: make output buffer String independent
- Loading branch information
Showing
7 changed files
with
119 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Publish gem to rubygems.org | ||
|
||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
push: | ||
if: github.repository == 'ruby/openssl' | ||
runs-on: ubuntu-latest | ||
|
||
environment: | ||
name: rubygems.org | ||
url: https://rubygems.org/gems/openssl | ||
|
||
permissions: | ||
contents: write | ||
id-token: write | ||
|
||
strategy: | ||
matrix: | ||
ruby: [ 'ruby', 'jruby' ] | ||
|
||
steps: | ||
- name: Harden Runner | ||
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2 | ||
with: | ||
egress-policy: audit | ||
|
||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
bundler-cache: true | ||
ruby-version: ${{ matrix.ruby }} | ||
|
||
- name: Publish to RubyGems | ||
uses: rubygems/release-gem@v1 | ||
|
||
- name: Create GitHub release | ||
run: | | ||
tag_name="$(git describe --tags --abbrev=0)" | ||
gh release create "${tag_name}" --verify-tag --draft --generate-notes pkg/*.gem | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
if: matrix.ruby == 'ruby' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module OpenSSL | ||
VERSION = "3.2.0" | ||
VERSION = "3.2.1" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Gem::Specification.new do |spec| | ||
spec.name = "openssl" | ||
spec.version = "3.2.0" | ||
spec.version = "3.2.1" | ||
spec.authors = ["Martin Bosslet", "SHIBATA Hiroshi", "Zachary Scott", "Kazuki Yamaguchi"] | ||
spec.email = ["[email protected]"] | ||
spec.summary = %q{SSL/TLS and general-purpose cryptography for Ruby} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters