From f124cbe76e66e290487ab8d46a38637ed4dd1101 Mon Sep 17 00:00:00 2001 From: arminius-smh Date: Sun, 11 Feb 2024 15:25:23 +0100 Subject: [PATCH] fix deployment --- .github/workflows/update.yml | 2 +- Gemfile.lock | 8 ++++---- scripts/parse_appendix.rb | 2 +- shell.nix | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 9e54268..4519327 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -14,7 +14,7 @@ jobs: - uses: ruby/setup-ruby@v1 with: - ruby-version: 2.7 + ruby-version: 3.3 #bundler-cache: true - run: | diff --git a/Gemfile.lock b/Gemfile.lock index e11ad3f..64509c7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,11 +1,11 @@ GEM remote: https://rubygems.org/ specs: - mini_portile2 (2.6.1) - nokogiri (1.12.5) - mini_portile2 (~> 2.6.1) + mini_portile2 (2.8.5) + nokogiri (1.16.2) + mini_portile2 (~> 2.8.2) racc (~> 1.4) - racc (1.6.0) + racc (1.7.3) PLATFORMS ruby diff --git a/scripts/parse_appendix.rb b/scripts/parse_appendix.rb index 37a7b79..9bc87e6 100644 --- a/scripts/parse_appendix.rb +++ b/scripts/parse_appendix.rb @@ -3,7 +3,7 @@ require 'nokogiri' require 'json' require 'pp' -url = 'https://nix-community.github.io/home-manager/options.html' +url = 'https://nix-community.github.io/home-manager/options.xhtml' html="" URI.open(url) do |f| html = f.read diff --git a/shell.nix b/shell.nix index d3abc6d..2b7123c 100644 --- a/shell.nix +++ b/shell.nix @@ -1,7 +1,7 @@ with (import {}); mkShell { buildInputs = [ - ruby_2_7 + ruby_3_3 ]; shellHook = '' mkdir -p .nix-gems