| ... | ... | @@ -14,7 +14,7 @@ jobs: |
| 14 | 14 | runs-on: [self-hosted, Linux, x86_64] |
| 15 | 15 | steps: |
| 16 | 16 | - name: Checkout |
| 17 | | uses: actions/checkout@v3 |
| 17 | uses: actions/checkout@v4 |
| 18 | 18 | - name: Build and Test |
| 19 | 19 | run: sh ci/x86_64-linux-debug.sh |
| 20 | 20 | x86_64-linux-release: |
| ... | ... | @@ -22,7 +22,7 @@ jobs: |
| 22 | 22 | runs-on: [self-hosted, Linux, x86_64] |
| 23 | 23 | steps: |
| 24 | 24 | - name: Checkout |
| 25 | | uses: actions/checkout@v3 |
| 25 | uses: actions/checkout@v4 |
| 26 | 26 | - name: Build and Test |
| 27 | 27 | run: sh ci/x86_64-linux-release.sh |
| 28 | 28 | aarch64-linux-debug: |
| ... | ... | @@ -30,7 +30,7 @@ jobs: |
| 30 | 30 | runs-on: [self-hosted, Linux, aarch64] |
| 31 | 31 | steps: |
| 32 | 32 | - name: Checkout |
| 33 | | uses: actions/checkout@v3 |
| 33 | uses: actions/checkout@v4 |
| 34 | 34 | - name: Build and Test |
| 35 | 35 | run: sh ci/aarch64-linux-debug.sh |
| 36 | 36 | aarch64-linux-release: |
| ... | ... | @@ -38,7 +38,7 @@ jobs: |
| 38 | 38 | runs-on: [self-hosted, Linux, aarch64] |
| 39 | 39 | steps: |
| 40 | 40 | - name: Checkout |
| 41 | | uses: actions/checkout@v3 |
| 41 | uses: actions/checkout@v4 |
| 42 | 42 | - name: Build and Test |
| 43 | 43 | run: sh ci/aarch64-linux-release.sh |
| 44 | 44 | x86_64-macos-release: |
| ... | ... | @@ -47,7 +47,7 @@ jobs: |
| 47 | 47 | ARCH: "x86_64" |
| 48 | 48 | steps: |
| 49 | 49 | - name: Checkout |
| 50 | | uses: actions/checkout@v3 |
| 50 | uses: actions/checkout@v4 |
| 51 | 51 | - name: Build and Test |
| 52 | 52 | run: ci/x86_64-macos-release.sh |
| 53 | 53 | aarch64-macos-debug: |
| ... | ... | @@ -56,7 +56,7 @@ jobs: |
| 56 | 56 | ARCH: "aarch64" |
| 57 | 57 | steps: |
| 58 | 58 | - name: Checkout |
| 59 | | uses: actions/checkout@v3 |
| 59 | uses: actions/checkout@v4 |
| 60 | 60 | - name: Build and Test |
| 61 | 61 | run: ci/aarch64-macos-debug.sh |
| 62 | 62 | aarch64-macos-release: |
| ... | ... | @@ -65,7 +65,7 @@ jobs: |
| 65 | 65 | ARCH: "aarch64" |
| 66 | 66 | steps: |
| 67 | 67 | - name: Checkout |
| 68 | | uses: actions/checkout@v3 |
| 68 | uses: actions/checkout@v4 |
| 69 | 69 | - name: Build and Test |
| 70 | 70 | run: ci/aarch64-macos-release.sh |
| 71 | 71 | x86_64-windows-debug: |
| ... | ... | @@ -74,7 +74,7 @@ jobs: |
| 74 | 74 | ARCH: "x86_64" |
| 75 | 75 | steps: |
| 76 | 76 | - name: Checkout |
| 77 | | uses: actions/checkout@v3 |
| 77 | uses: actions/checkout@v4 |
| 78 | 78 | - name: Build and Test |
| 79 | 79 | run: ci/x86_64-windows-debug.ps1 |
| 80 | 80 | x86_64-windows-release: |
| ... | ... | @@ -83,7 +83,7 @@ jobs: |
| 83 | 83 | ARCH: "x86_64" |
| 84 | 84 | steps: |
| 85 | 85 | - name: Checkout |
| 86 | | uses: actions/checkout@v3 |
| 86 | uses: actions/checkout@v4 |
| 87 | 87 | - name: Build and Test |
| 88 | 88 | run: ci/x86_64-windows-release.ps1 |
| 89 | 89 | aarch64-windows: |
| ... | ... | @@ -92,6 +92,6 @@ jobs: |
| 92 | 92 | ARCH: "aarch64" |
| 93 | 93 | steps: |
| 94 | 94 | - name: Checkout |
| 95 | | uses: actions/checkout@v3 |
| 95 | uses: actions/checkout@v4 |
| 96 | 96 | - name: Build and Test |
| 97 | 97 | run: ci/aarch64-windows.ps1 |