diff options
author | tpowell-progress <104777878+tpowell-progress@users.noreply.github.com> | 2022-11-29 13:06:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-29 13:06:30 -0500 |
commit | eb38949cbe13f361233a0c90cc2f60acef66d58f (patch) | |
tree | d47b3e6dd45c276a5669fd251a9b91d640529b06 | |
parent | fd86f1a5c7899f50436e75d4683250fc062c01ae (diff) | |
download | chef-eb38949cbe13f361233a0c90cc2f60acef66d58f.tar.gz |
Lock ruby to 3.1.2 for GitHub Actions unit specs (#13393)
in `generate_key!': pkeys are immutable on OpenSSL 3.0 (OpenSSL::PKey::PKeyError)
Signed-off-by: Thomas Powell <powell@progress.com>
-rw-r--r-- | .github/workflows/unit_specs.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/unit_specs.yml b/.github/workflows/unit_specs.yml index 7efb9e31ee..59c340eded 100644 --- a/.github/workflows/unit_specs.yml +++ b/.github/workflows/unit_specs.yml @@ -16,7 +16,7 @@ jobs: clean: true - uses: ruby/setup-ruby@v1 with: - ruby-version: "3.1" + ruby-version: "3.1.2" bundler-cache: false - run: bundle update --bundler - run: bundle install |