Skip to content

Commit 95b23c1

Browse files
committed
Merge remote-tracking branch 'upstream/main'
2 parents ff9f30a + df08ba4 commit 95b23c1

File tree

30 files changed

+211
-55
lines changed

30 files changed

+211
-55
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build all sites
2+
3+
on:
4+
pull_request:
5+
workflow_dispatch:
6+
7+
jobs:
8+
build_all_sites:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: Setup Go
13+
uses: actions/setup-go@v4
14+
with:
15+
go-version: 1.24.5
16+
- name: Setup Hugo
17+
uses: peaceiris/actions-hugo@75d2e84710de30f6ff7268e08f310b60ef14033f
18+
with:
19+
hugo-version: '0.136.3'
20+
extended: true
21+
- name: Build all sites
22+
run: ./tooling/build_all_sites.sh
23+
env:
24+
HUGO_CURRICULUM_GITHUB_BEARER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/check-consistency.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup Go
1313
uses: actions/setup-go@v4
1414
with:
15-
go-version: 1.21
15+
go-version: 1.24.5
1616
- name: Build tooling
1717
run: (cd tooling/go && go build ./cmd/local-overrides-enforcer && go build ./cmd/sprint-consistency && go build ./cmd/site-consistency)
1818
- name: Check override consistency

.github/workflows/test-tooling.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
- name: Setup Go
1313
uses: actions/setup-go@v4
1414
with:
15-
go-version: 1.21
15+
go-version: 1.24.5
1616
- name: Run tooling tests
1717
run: cd tooling/go && go test ./...

common-content/en/blocks/morning-break/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ hide_from_overview=true
1010

1111
+++
1212

13-
A quick break of fifteen minutes so we can all concentrate on the next piece of work.
13+
A quick break so we can all concentrate on the next piece of work.

common-content/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/CodeYourFuture/curriculum/common-content
22

3-
go 1.21.3
3+
go 1.24.5

common-docs/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/CodeYourFuture/curriculum/common-docs
22

3-
go 1.22.6
3+
go 1.24.5
44

55
require (
66
github.com/CodeYourFuture/CYF-PD v1.0.1-0.20240721130916-d70fc853a278 // indirect

common-theme/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/CodeYourFuture/curriculum/common-theme
22

3-
go 1.21.3
3+
go 1.24.5

common-theme/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"scripts": {
77
"test": "echo \"Error: no test specified\" && exit 1",
88
"start:dev": "dotenv -- hugo server -p 3000 -D",
9+
"build:dev": "hugo mod vendor && dotenv -e ../.env -- hugo --environment development",
910
"build:audit": "HUGO_MINIFY_TDEWOLFF_HTML_KEEPCOMMENTS=true HUGO_ENABLEMISSINGTRANSLATIONPLACEHOLDERS=true hugo mod vendor && dotenv -e ../.env -- hugo --environment production && grep -inorE '<\\!-- raw HTML omitted -->|ZgotmplZ|\\[i18n\\]|\\(<nil>\\)|(&lt;nil&gt;)|hahahugo' public/"
1011
},
1112
"repository": {

org-cyf-guides/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
module github.com/CodeYourFuture/curriculum/org-cyf-guides
22

3-
go 1.22.6
3+
go 1.24.5
44

55
require (
6-
github.com/CodeYourFuture/curriculum/common-content v0.0.0-20240818070728-e8702788f7cb // indirect
7-
github.com/CodeYourFuture/curriculum/common-theme v0.0.0-20240818070728-e8702788f7cb // indirect
6+
github.com/CodeYourFuture/curriculum/common-content v0.0.0-20241008095008-281a5517463f // indirect
7+
github.com/CodeYourFuture/curriculum/common-theme v0.0.0-20241008095008-281a5517463f // indirect
88
github.com/CodeYourFuture/curriculum/org-cyf-theme v0.0.0-20240818070728-e8702788f7cb // indirect
99
)
1010

org-cyf-how-this-works/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/CodeYourFuture/curriculum/org-cyf-how-this-works
22

3-
go 1.22.6
3+
go 1.24.5
44

55
toolchain go1.22.8
66

0 commit comments

Comments
 (0)