From a68ec485ee72feb693a8f86b335da01e49b3a36a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 02:11:26 +0000 Subject: [PATCH 1/2] Bump taiki-e/install-action Bumps the github-actions group with 1 update in the / directory: [taiki-e/install-action](https://github.com/taiki-e/install-action). Updates `taiki-e/install-action` from 2.83.3 to 2.83.4 - [Release notes](https://github.com/taiki-e/install-action/releases) - [Changelog](https://github.com/taiki-e/install-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/taiki-e/install-action/compare/ed67fa35ac944f3a9b33f12c4dd43b6f31a47e20...07b4745e0c39a41822af610387492e3e53aa222b) --- updated-dependencies: - dependency-name: taiki-e/install-action dependency-version: 2.83.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/zjit-macos.yml | 2 +- .github/workflows/zjit-ubuntu.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/zjit-macos.yml b/.github/workflows/zjit-macos.yml index 925e4a96e8eebb..f109342fd076e4 100644 --- a/.github/workflows/zjit-macos.yml +++ b/.github/workflows/zjit-macos.yml @@ -98,7 +98,7 @@ jobs: rustup install ${{ matrix.rust_version }} --profile minimal rustup default ${{ matrix.rust_version }} - - uses: taiki-e/install-action@ed67fa35ac944f3a9b33f12c4dd43b6f31a47e20 # v2.83.3 + - uses: taiki-e/install-action@07b4745e0c39a41822af610387492e3e53aa222b # v2.83.4 with: tool: nextest@0.9 if: ${{ matrix.test_task == 'zjit-check' }} diff --git a/.github/workflows/zjit-ubuntu.yml b/.github/workflows/zjit-ubuntu.yml index 73909e0cbca6a2..38de755c0862ca 100644 --- a/.github/workflows/zjit-ubuntu.yml +++ b/.github/workflows/zjit-ubuntu.yml @@ -141,7 +141,7 @@ jobs: ruby-version: '3.1' bundler: none - - uses: taiki-e/install-action@ed67fa35ac944f3a9b33f12c4dd43b6f31a47e20 # v2.83.3 + - uses: taiki-e/install-action@07b4745e0c39a41822af610387492e3e53aa222b # v2.83.4 with: tool: nextest@0.9 if: ${{ matrix.test_task == 'zjit-check' }} From 8ff8963995e6df14c0ec589a526a268dde4b9cc5 Mon Sep 17 00:00:00 2001 From: "Ken C. Demanawa" <81869608+kanutocd@users.noreply.github.com> Date: Mon, 20 Jul 2026 14:09:41 +0800 Subject: [PATCH 2/2] [ruby/time] [DOC] Exclude _xmlschema from RDoc https://github.com/ruby/time/commit/2b43839fc2 --- lib/time.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/time.rb b/lib/time.rb index 1c66088d33ac21..eaf98364d6710f 100644 --- a/lib/time.rb +++ b/lib/time.rb @@ -668,7 +668,7 @@ def rfc3339(time) private if RUBY_VERSION >= "3.2" - def _xmlschema(pattern, time) + def _xmlschema(pattern, time) # :nodoc: if pattern.match?(time) new(time) else @@ -676,7 +676,7 @@ def _xmlschema(pattern, time) end end else - def _xmlschema(pattern, time) + def _xmlschema(pattern, time) # :nodoc: if pattern =~ time year = $1.to_i mon = $2.to_i