From 51035530a41a721488f8120917e2203021b0e425 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Fri, 22 Aug 2025 16:49:39 +0200 Subject: [PATCH 1/3] CI: Tell dependabot to update GH Actions versions --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..5ace4600 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" From 107a4c22f6a5d95e8c64029006d01b1c17f304b6 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Fri, 22 Aug 2025 16:53:23 +0200 Subject: [PATCH 2/3] CI: Refer to chrome rather than chromium I took the string from the output of the Setup Chrome action just before. --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index da954cff..92b9f094 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -33,8 +33,8 @@ jobs: - name: Fix GA Chrome Permissions run: | - sudo chown root:root /opt/hostedtoolcache/setup-chrome/chromium/stable/x64/chrome-sandbox - sudo chmod 4755 /opt/hostedtoolcache/setup-chrome/chromium/stable/x64/chrome-sandbox + sudo chown root:root /opt/hostedtoolcache/setup-chrome/chrome/stable/x64/chrome + sudo chmod 4755 /opt/hostedtoolcache/setup-chrome/chrome/stable/x64/chrome - name: Run tests run: | From c7cb42aee9b8a7483ec4cd6d0437ff5bd01ea6a2 Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Fri, 22 Aug 2025 16:56:46 +0200 Subject: [PATCH 3/3] Gemfile: avoid warnings on Ruby 3.4 of ostruct, logger --- Gemfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Gemfile b/Gemfile index dc702f11..af032cd3 100644 --- a/Gemfile +++ b/Gemfile @@ -18,3 +18,8 @@ gem "sinatra", "~> 3.2" gem "yard", "~> 0.9", require: false gemspec + +if RUBY_VERSION > "3.4" + gem "logger" # "warning: logger was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.5.0." + gem "ostruct" # "warning: ostruct was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.5.0." +end