Skip to content

Commit 44af391

Browse files
Jekyll - EOL ruby 2.7 ; use ruby 3.2 instead (#516)
* Jekyll - EOL ruby 2.7 ; use ruby 3.2 instead * Update test.sh
1 parent 23301e4 commit 44af391

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/push-dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
if: "github.ref == 'refs/heads/main'"
1212
strategy:
1313
matrix:
14-
page: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53]
15-
page-total: [53]
14+
page: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51]
15+
page-total: [51]
1616
fail-fast: false
1717
runs-on: devcontainer-image-builder-ubuntu
1818
steps:

.github/workflows/push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
if: ${{ github.event.base_ref == 'refs/heads/main' }}
1212
strategy:
1313
matrix:
14-
page: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53]
15-
page-total: [53]
14+
page: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51]
15+
page-total: [51]
1616
fail-fast: false
1717
runs-on: devcontainer-image-builder-ubuntu
1818
steps:

src/jekyll/.devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# [Choice] Debian OS version (use 2.7-bullseye on local arm64/Apple Silicon): 2.7-bullseye, 2.7-buster
2-
ARG VARIANT=2.7-bullseye
1+
# [Choice] Debian OS version (use 3.2-bullseye on local arm64/Apple Silicon): 3.2-bullseye, 3.2-buster
2+
ARG VARIANT=3.2-bullseye
33
FROM mcr.microsoft.com/devcontainers/ruby:${VARIANT}
44

55
USER root

src/jekyll/manifest.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
11
{
22
"version": "0.1.22",
33
"variants": [
4-
"2.7-bullseye",
5-
"2.7-buster"
4+
"3.2-bullseye",
5+
"3.2-buster"
66
],
77
"build": {
8-
"latest": "2.7-bullseye",
8+
"latest": "3.2-bullseye",
99
"parent": "ruby",
1010
"rootDistro": "debian",
1111
"architectures": {
12-
"2.7-bullseye": [
12+
"3.2-bullseye": [
1313
"linux/amd64",
1414
"linux/arm64"
1515
],
16-
"2.7-buster": [
16+
"3.2-buster": [
1717
"linux/amd64"
1818
]
1919
},
2020
"tags": [
2121
"jekyll:${VERSION}-${VARIANT}"
2222
],
2323
"variantTags": {
24-
"2.7-bullseye": [
24+
"3.2-bullseye": [
2525
"jekyll:${VERSION}",
2626
"jekyll:${VERSION}-bullseye"
2727
],
28-
"2.7-buster": [
28+
"3.2-buster": [
2929
"jekyll:${VERSION}-buster"
3030
]
3131
}

0 commit comments

Comments
 (0)