From 57b4ee8de07e995f6f198e9204903c3e62763fd2 Mon Sep 17 00:00:00 2001 From: Dave Orweller Date: Mon, 30 Mar 2026 08:41:25 -0400 Subject: [PATCH 1/2] ISG-92 - More Node.js 24 related updates --- .github/workflows/editorconfig.yml | 4 ++-- .github/workflows/rubocop.yml | 2 +- .github/workflows/rubygems.yml | 4 ++-- .github/workflows/tester.yml | 2 +- .github/workflows/yard.yml | 2 +- CHANGELOG.md | 10 ++++++++++ Gemfile.lock | 2 +- 7 files changed, 18 insertions(+), 8 deletions(-) diff --git a/.github/workflows/editorconfig.yml b/.github/workflows/editorconfig.yml index 14b9c6f..68ccbae 100644 --- a/.github/workflows/editorconfig.yml +++ b/.github/workflows/editorconfig.yml @@ -11,11 +11,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Node uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 24 - name: Install editorconfig-checker run: npm install --global editorconfig-checker - name: Run editorconfig-checker diff --git a/.github/workflows/rubocop.yml b/.github/workflows/rubocop.yml index 7d465ff..de31d64 100644 --- a/.github/workflows/rubocop.yml +++ b/.github/workflows/rubocop.yml @@ -10,7 +10,7 @@ jobs: name: Check runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/rubygems.yml b/.github/workflows/rubygems.yml index 11f024f..fa430c7 100644 --- a/.github/workflows/rubygems.yml +++ b/.github/workflows/rubygems.yml @@ -25,12 +25,12 @@ jobs: steps: # Set up - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: bundler-cache: true - ruby-version: ruby + ruby-version: 3.3 # Release - uses: rubygems/release-gem@v1 diff --git a/.github/workflows/tester.yml b/.github/workflows/tester.yml index e68bd71..0881fd3 100644 --- a/.github/workflows/tester.yml +++ b/.github/workflows/tester.yml @@ -10,7 +10,7 @@ jobs: name: Test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/yard.yml b/.github/workflows/yard.yml index 23ddfab..8604e5d 100644 --- a/.github/workflows/yard.yml +++ b/.github/workflows/yard.yml @@ -10,7 +10,7 @@ jobs: name: Check runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: diff --git a/CHANGELOG.md b/CHANGELOG.md index 1285fe6..fcd2248 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [4.6.1] + +### Changed + +1. Use GH actions for Node 24. (ISG-92) + +### Fixed + +1. Lock rubygems.yml ruby version to 3.3. (ISG-92) + ## [4.6.0] ### Changed diff --git a/Gemfile.lock b/Gemfile.lock index 95c4b10..82c123e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -186,4 +186,4 @@ DEPENDENCIES yard (~> 0.9) BUNDLED WITH - 4.0.9 + 2.5.17 From 0753dba75723cbf2a77e5579cf3ac8223713ad66 Mon Sep 17 00:00:00 2001 From: Dave Orweller Date: Mon, 30 Mar 2026 08:59:12 -0400 Subject: [PATCH 2/2] Bump version --- Gemfile.lock | 2 +- lib/faithteams/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 82c123e..44030e7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - faithteams-api (4.6.0) + faithteams-api (4.6.1) activesupport (~> 7.2) http (~> 5.1) diff --git a/lib/faithteams/version.rb b/lib/faithteams/version.rb index 12ddcff..cf88a40 100644 --- a/lib/faithteams/version.rb +++ b/lib/faithteams/version.rb @@ -2,5 +2,5 @@ module FaithTeams # Current version number. - VERSION = "4.6.0" + VERSION = "4.6.1" end