Skip to content

Commit 36f67e8

Browse files
committed
Update Checkout Action
Supposedly this should also fix getting the tags
1 parent d46c4ca commit 36f67e8

5 files changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/build_mac.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,10 @@ jobs:
3636

3737
steps:
3838
- name: Checkout Repository
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v5
4040
with:
4141
submodules: recursive
42+
fetch-tags: true
4243

4344
- name: Install Qt
4445
uses: jurplel/install-qt-action@v4

.github/workflows/build_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
steps:
3838
# Will make the later gh release command work
3939
- name: Checkout Repository
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@v5
4141

4242
- name: Create Folder for Windows Files
4343
run: mkdir wwhd_rando_${{ github.event.release.tag_name }}_windows

.github/workflows/build_wiiu.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,10 @@ jobs:
3535

3636
steps:
3737
- name: Checkout Repository
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v5
3939
with:
4040
submodules: recursive
41+
fetch-tags: true
4142

4243
- name: Set Debug Flags
4344
if: inputs.build_type == 'Debug'

.github/workflows/build_windows.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,10 @@ jobs:
4545
disk-root: "C:"
4646

4747
- name: Checkout Repository
48-
uses: actions/checkout@v4
48+
uses: actions/checkout@v5
4949
with:
5050
submodules: recursive
51+
fetch-tags: true
5152

5253
- name: Install Qt
5354
uses: jurplel/install-qt-action@v4

.github/workflows/run_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
disk-root: "C:"
2121

2222
- name: Checkout Repository
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
with:
2525
submodules: recursive
2626

0 commit comments

Comments
 (0)