Skip to content

Commit 9eb206b

Browse files
authored
Merge pull request #97 from Splaxi/new-actions-workflows
Fix: Making the actions / workflows run from a cache
2 parents 3c83802 + 97b9ad8 commit 9eb206b

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Validate General Unit Tests
1414
runs-on: windows-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v1
1717
with:
1818
fetch-depth: 1
1919

@@ -43,7 +43,7 @@ jobs:
4343
name: Validate Individual Unit Tests
4444
runs-on: windows-latest
4545
steps:
46-
- uses: actions/checkout@v4
46+
- uses: actions/checkout@v1
4747
with:
4848
fetch-depth: 1
4949

@@ -76,7 +76,7 @@ jobs:
7676
permissions:
7777
contents: write
7878
steps:
79-
- uses: actions/checkout@v4
79+
- uses: actions/checkout@v1
8080
with:
8181
fetch-depth: 1
8282

.github/workflows/validate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Validate General Unit Tests
88
runs-on: windows-latest
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v1
1111
with:
1212
fetch-depth: 1
1313

@@ -37,7 +37,7 @@ jobs:
3737
name: Validate Individual Unit Tests
3838
runs-on: windows-latest
3939
steps:
40-
- uses: actions/checkout@v4
40+
- uses: actions/checkout@v1
4141
with:
4242
fetch-depth: 1
4343

0 commit comments

Comments
 (0)