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" 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: | 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