From 1b2653681162e7c8d17b2c962265187b66142ae8 Mon Sep 17 00:00:00 2001 From: Petr Heinz Date: Fri, 17 Jul 2026 12:16:04 +0200 Subject: [PATCH 1/2] SH-1002 [CI] Update GitHub Actions versions Co-Authored-By: Claude Fable 5 --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index aac771a..a44b90a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,7 +27,7 @@ jobs: - "truffleruby" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v7 - name: Set up Ruby ${{ matrix.ruby-version }} uses: ruby/setup-ruby@v1 From eebf45bce71807cc54563e9d6137c037048e5b8a Mon Sep 17 00:00:00 2001 From: Petr Heinz Date: Fri, 17 Jul 2026 13:13:34 +0200 Subject: [PATCH 2/2] Update workflow to use Ubuntu 24.04 --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a44b90a..0e6a345 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,13 +2,15 @@ name: build on: push: + branches: [main] + pull_request: schedule: - cron: '20 5 * * 1' workflow_dispatch: jobs: test: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 strategy: fail-fast: false