From fb89ceb37ccfbc8090ccec3013510c83d34719d3 Mon Sep 17 00:00:00 2001 From: Michael Hashizume Date: Mon, 6 Nov 2023 14:50:19 -0800 Subject: [PATCH 1/2] (maint) Remove Rubygems pin In 52b0dee, we pinned Rubygems to 3.3.26 for Ruby 2.5 compatibility. In the Puppet 8 series where the minimum supported version of Ruby is 3.1, we no longer need to pin to that version of Rubygems. This commit removes the pin to Rubygems 3.3.26 in the Checks and Rspec tests GitHub Actions workflows. --- .github/workflows/checks.yaml | 2 +- .github/workflows/rspec_tests.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checks.yaml b/.github/workflows/checks.yaml index 2a8b234d4ef..b8235dd2d41 100644 --- a/.github/workflows/checks.yaml +++ b/.github/workflows/checks.yaml @@ -34,7 +34,7 @@ jobs: - name: Update rubygems and install gems run: | - gem update --system 3.3.26 --silent --no-document + gem update --system --silent --no-document bundle config set without packaging documentation bundle install --jobs 4 --retry 3 diff --git a/.github/workflows/rspec_tests.yaml b/.github/workflows/rspec_tests.yaml index 791f97e3572..bbeabbfe648 100644 --- a/.github/workflows/rspec_tests.yaml +++ b/.github/workflows/rspec_tests.yaml @@ -35,7 +35,7 @@ jobs: - name: Update rubygems and install gems run: | - gem update --system 3.3.26 --silent --no-document + gem update --system --silent --no-document bundle config set without packaging documentation bundle install --jobs 4 --retry 3 From cb69732adb14e877fa02f111ea53cc0d698be8bd Mon Sep 17 00:00:00 2001 From: Michael Hashizume Date: Mon, 6 Nov 2023 14:52:18 -0800 Subject: [PATCH 2/2] (maint) Add name to Jira workflow This commit adds a friendly name to the GitHub Actions workflow that exports GitHub issues to Jira. --- .github/workflows/jira.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/jira.yml b/.github/workflows/jira.yml index 299d36dc3fb..0444c98d823 100644 --- a/.github/workflows/jira.yml +++ b/.github/workflows/jira.yml @@ -1,3 +1,6 @@ +--- +name: Export issue to Jira + on: issues: types: [labeled]