|
15 | 15 | runs-on: ubuntu-latest
|
16 | 16 | env: { CICACHE: "/tmp/cicache", CITAG: "focal" }
|
17 | 17 | steps:
|
18 |
| - - uses: actions/checkout@v4 |
| 18 | + - uses: actions/checkout@v4.1.1 |
| 19 | + with: { fetch-depth: 0 } |
| 20 | + - run: | |
| 21 | + git fetch -f --tags # Fix actions/checkout annotated tag mess; actions/checkout#290 |
| 22 | + git submodule update --init --recursive |
19 | 23 | - uses: actions/cache@v3
|
20 | 24 | with: { path: "/tmp/cicache", key: "cifocal-${{hashFiles ('misc/Dockerfile.focal')}}" }
|
21 | 25 | - name: 'Prepare Docker Image'
|
|
40 | 44 | runs-on: ubuntu-latest
|
41 | 45 | env: { CICACHE: "/tmp/cicache", CITAG: "arch" }
|
42 | 46 | steps:
|
43 |
| - - uses: actions/checkout@v4 |
| 47 | + - uses: actions/checkout@v4.1.1 |
| 48 | + with: { fetch-depth: 0 } |
| 49 | + - run: | |
| 50 | + git fetch -f --tags # Fix actions/checkout annotated tag mess; actions/checkout#290 |
| 51 | + git submodule update --init --recursive |
44 | 52 | - uses: actions/cache@v3
|
45 | 53 | with: { path: "/tmp/cicache", key: "ciarch-${{hashFiles ('misc/Dockerfile.arch')}}" }
|
46 | 54 | - name: 'Prepare Docker Image'
|
|
63 | 71 | runs-on: ubuntu-latest
|
64 | 72 | env: { CICACHE: "/tmp/cicache", CITAG: "focal" }
|
65 | 73 | steps:
|
66 |
| - - uses: actions/checkout@v4 |
| 74 | + - uses: actions/checkout@v4.1.1 |
| 75 | + with: { fetch-depth: 0 } |
| 76 | + - run: | |
| 77 | + git fetch -f --tags # Fix actions/checkout annotated tag mess; actions/checkout#290 |
| 78 | + git submodule update --init --recursive |
67 | 79 | - uses: actions/cache@v3
|
68 | 80 | with: { path: "/tmp/cicache", key: "cifocal-${{hashFiles ('misc/Dockerfile.focal')}}" }
|
69 | 81 | - name: 'Prepare Docker Image'
|
@@ -91,7 +103,11 @@ jobs:
|
91 | 103 | needs: [Focal-Assets, Arch-Replay, Focal-Clang-Tidy]
|
92 | 104 | runs-on: ubuntu-latest
|
93 | 105 | steps:
|
94 |
| - - uses: actions/checkout@v3 |
| 106 | + - uses: actions/checkout@v4.1.1 |
| 107 | + with: { fetch-depth: 0 } |
| 108 | + - run: | |
| 109 | + git fetch -f --tags # Fix actions/checkout annotated tag mess; actions/checkout#290 |
| 110 | + git submodule update --init --recursive |
95 | 111 | - name: Check Jobs
|
96 | 112 | run: |
|
97 | 113 | echo '${{ needs.Focal-Assets.result }}' '${{ needs.Arch-Replay.result }}' '${{ needs.Focal-Clang-Tidy.result }}'
|
|
0 commit comments