Skip to content

Commit 96e37d0

Browse files
authored
Merge branch 'main' into add-intergalactic-transmission
2 parents 1648652 + ae8a886 commit 96e37d0

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

.github/workflows/java.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414
build:
1515
name: Check if tests compile cleanly with starter sources
16-
runs-on: ubuntu-22.04
16+
runs-on: ubuntu-24.04
1717
steps:
1818
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
1919
- name: Set up JDK 1.17
@@ -27,7 +27,7 @@ jobs:
2727

2828
lint:
2929
name: Lint Java files using Checkstyle
30-
runs-on: ubuntu-22.04
30+
runs-on: ubuntu-24.04
3131
steps:
3232
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
3333
- name: Set up JDK 1.17
@@ -41,7 +41,7 @@ jobs:
4141

4242
test:
4343
name: Test all exercises using java-test-runner
44-
runs-on: ubuntu-22.04
44+
runs-on: ubuntu-24.04
4545
steps:
4646
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
4747
- name: Test all exercises using java-test-runner

.github/workflows/markdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515
jobs:
1616
lint:
1717
name: Lint Markdown files
18-
runs-on: ubuntu-22.04
18+
runs-on: ubuntu-24.04
1919
steps:
2020
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2121
- name: Lint markdown

exercises/practice/luhn/.docs/instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ If the sum is evenly divisible by 10, the original number is valid.
4141

4242
### Invalid Canadian SIN
4343

44-
The number to be checked is `066 123 468`.
44+
The number to be checked is `066 123 478`.
4545

4646
We start at the end of the number and double every second digit, beginning with the second digit from the right and moving left.
4747

exercises/practice/piecing-it-together/.meta/config.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
],
1515
"editor": [
1616
"src/main/java/JigsawInfo.java"
17+
],
18+
"invalidator": [
19+
"build.gradle"
1720
]
1821
},
1922
"blurb": "Fill in missing jigsaw puzzle details from partial data",

exercises/practice/swift-scheduling/.meta/config.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
],
1212
"example": [
1313
".meta/src/reference/java/SwiftScheduling.java"
14+
],
15+
"invalidator": [
16+
"build.gradle"
1417
]
1518
},
1619
"blurb": "Convert delivery date descriptions to actual delivery dates.",

0 commit comments

Comments
 (0)