From 223d8efb6c8f174f38a7a61e2af5fc8cd2d818ac Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 26 Nov 2022 14:00:42 +0100 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Update=20jekyll=20requirem?= =?UTF-8?q?ent=20from=20~>=204.2.1=20to=20~>=204.3.1=20(#13)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * :arrow_up: Update jekyll requirement from ~> 4.2.1 to ~> 4.3.1 Updates the requirements on [jekyll](https://github.com/jekyll/jekyll) to permit the latest version. - [Release notes](https://github.com/jekyll/jekyll/releases) - [Changelog](https://github.com/jekyll/jekyll/blob/master/History.markdown) - [Commits](https://github.com/jekyll/jekyll/compare/v4.2.1...v4.3.1) --- updated-dependencies: - dependency-name: jekyll dependency-type: direct:production ... Signed-off-by: dependabot[bot] * Fix CI, add Mastodon * Upgrade ruby, fix all URL errors * htmlproofer not respecting path? Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jeremy Mayeres Co-authored-by: Jeremy Mayeres <1524722+jerr0328@users.noreply.github.com> --- .github/workflows/build.yml | 2 +- Gemfile | 2 +- index.md | 5 +++-- script/cibuild | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 93056d0..283e549 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,6 +13,6 @@ jobs: - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: - ruby-version: 2.7 # + ruby-version: 3.1 bundler-cache: true # runs 'bundle install' and caches installed gems automatically - run: script/cibuild diff --git a/Gemfile b/Gemfile index 1e534fe..38906e5 100644 --- a/Gemfile +++ b/Gemfile @@ -1,5 +1,5 @@ source 'https://rubygems.org' -gem "jekyll", "~> 4.2.1" +gem "jekyll", "~> 4.3.1" group :jekyll_plugins do gem "jekyll-theme-cayman" diff --git a/index.md b/index.md index a31ae99..3e20208 100644 --- a/index.md +++ b/index.md @@ -151,7 +151,7 @@ Also updated ActiveX interface to the RFID SDK and provided direction to resolvi * [OpenStreetMap](https://www.openstreetmap.org/) - Contribute to OSM, including Humanitarian OpenStreetMap mapping. * [Berliner Tafel](https://www.berliner-tafel.de/berliner-tafel/) - Sorted unwanted food -* [Berliner Obdachlosenhilfe](http://www.berliner-obdachlosenhilfe.de/) - Prepared and distributed food for the homeless +* [Berliner Obdachlosenhilfe](https://www.berliner-obdachlosenhilfe.de/) - Prepared and distributed food for the homeless * Habitat for Humanity - Helped build homes in Melbourne, FL * Harris High School Design Challenge - Get students involved with Science, Technology, Engineering, and Math (STEM) in local high schools. The design challenge consists of teams of high school students creating a mobile application to solve certain challenges. My responsibilities included updating the Android framework, judging preliminary presentations by the students, and being a "dispatcher" during the actual competition. @@ -179,10 +179,11 @@ Finnish | A1 Level ## Links ### Connect +* Mastodon * [Twitter - Jerr](https://twitter.com/Jerr) * [GitHub - jerr0328](https://github.com/jerr0328) * [LinkedIn](https://www.linkedin.com/in/jmayeres/) -* [StackOverflow](https://stackoverflow.com/story/jeremy) +* [StackOverflow](https://stackoverflow.com/users/375530/jerr) * [Dev.to - Jerr](https://dev.to/jerr) * [Blogspot (outdated)](https://jeremymayeres.blogspot.de/) diff --git a/script/cibuild b/script/cibuild index 78613a8..f904d2e 100755 --- a/script/cibuild +++ b/script/cibuild @@ -2,4 +2,4 @@ set -e # halt script on error bundle exec jekyll build -bundle exec htmlproofer --http-status-ignore "999" --url-ignore "/fonts.gstatic.com/" --assume-extension ./_site +(cd ./_site && bundle exec htmlproofer --ignore-status-codes "999" --ignore-urls "/fonts.gstatic.com/,/assets/css/style.css?v=" --assume-extension ./)