Skip to content

Commit 40cbf8f

Browse files
authored
Merge pull request #50 from BethanyG/fix-submodule-checkout
[CI] Fix Submodule Checkout in build.yml to Prevent Docker Build Failure
2 parents 9e1d60a + d2964ab commit 40cbf8f

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@ jobs:
1313
# This workflow contains a single job called "build"
1414
build:
1515
# The type of runner that the job will run on
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-24.04
1717

1818
# Steps represent a sequence of tasks that will be executed as part of the job
1919
steps:
20-
- uses: actions/checkout@v2
21-
- name: Checkout submodules
22-
uses: textbook/git-checkout-submodule-action@master
20+
- name: Checkout repository and submodules
21+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
22+
with:
23+
submodules: recursive

0 commit comments

Comments
 (0)