From 089fb57eef343842922d7ea33c5a6ec0a14e761f Mon Sep 17 00:00:00 2001 From: Sean Killeen Date: Thu, 15 Feb 2024 09:36:51 -0500 Subject: [PATCH] GitHub pages v230 (#11) * Update dockerfile * Update build --- .github/workflows/build.yml | 2 +- Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ecababc..a163276 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: name: "Build and Release" strategy: matrix: - VERSIONS: [ {ruby: 2.7.3, ghpages: 226}, {ruby: 2.7.4, ghpages: 229}] + VERSIONS: [ {ruby: 2.7.3, ghpages: 226}, {ruby: 2.7.4, ghpages: 230}] NODE_MAJOR_VERSION: [18,20,21] runs-on: ubuntu-latest env: diff --git a/Dockerfile b/Dockerfile index a57c85a..2c8c0cd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Adapted from https://github.com/timbru31/docker-ruby-node/blob/master/2.7/16/Dockerfile # Using dependency references from https://pages.github.com/versions/ -# 2.7.4 is GitHub Pages 229 compatible +# 2.7.4 is GitHub Pages 230 compatible ARG RUBY_VERSION=2.7.4 FROM ruby:${RUBY_VERSION} @@ -9,7 +9,7 @@ FROM ruby:${RUBY_VERSION} # NOTE: These args need to stay below the FROM line in order for Docker to recognize them. ARG BUILD_DATE ARG VCS_REF -ARG GH_PAGES_VERSION=229 +ARG GH_PAGES_VERSION=230 ARG NODE_MAJOR_VERSION=20 # Bundler 2.4.x is the last to support ruby <= 2.7.4 ARG BUNDLER_VERSION=2.4.22