From 84be4e866b72d18c9db0e93ace60e78645512c3f Mon Sep 17 00:00:00 2001 From: Jon Blower Date: Thu, 29 Jan 2026 17:04:22 +0000 Subject: [PATCH 1/3] Updated copyright year in index.html This is a trivial change to test the automated build --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 305607b..5536415 100644 --- a/index.html +++ b/index.html @@ -105,6 +105,6 @@

- Copyright © 2015-2024 The University of Reading. + Copyright © 2015-2026 The University of Reading.

From 8669c1be1a7984d2fd73039e633ac2b782580ad1 Mon Sep 17 00:00:00 2001 From: Jon Blower Date: Thu, 29 Jan 2026 17:07:45 +0000 Subject: [PATCH 2/3] Updated upload-artifact action to v4 --- .github/workflows/pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 81520ab..8025d77 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -19,7 +19,7 @@ jobs: build_only: true jekyll_build_options: -d _site - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: page path: _site From abf9d178dc3b720e1419aa2eaa54902deac43ff8 Mon Sep 17 00:00:00 2001 From: Jon Blower Date: Thu, 29 Jan 2026 17:24:55 +0000 Subject: [PATCH 3/3] Updated ruby version in jekyll.yml Using template in https://github.com/actions/starter-workflows/blob/main/pages/jekyll.yml --- .github/workflows/jekyll.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index 956575e..a079153 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -34,7 +34,8 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Setup Ruby - uses: ruby/setup-ruby@8575951200e472d5f2d95c625da0c7bec8217c42 # v1.161.0 + # https://github.com/ruby/setup-ruby/releases/tag/v1.207.0 + uses: ruby/setup-ruby@4a9ddd6f338a97768b8006bf671dfbad383215f4 with: ruby-version: '3.1' # Not needed with a .ruby-version file bundler-cache: true # runs 'bundle install' and caches installed gems automatically