diff options
| author | Minsoo Choo <minsoochoo0122@proton.me> | 2024-03-09 16:37:57 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-09 16:37:57 -0500 |
| commit | 4ba4f94c93d5eb1945f1b2c8c53a45cbee609d3b (patch) | |
| tree | 61bf50b68e2eaf0d1cc70a8d9eb80665a019e401 /.github | |
| parent | e2cbbd0c264b323a422ef6dc8c586c287aec845a (diff) | |
| download | zig-4ba4f94c93d5eb1945f1b2c8c53a45cbee609d3b.tar.gz zig-4ba4f94c93d5eb1945f1b2c8c53a45cbee609d3b.zip | |
CI: update actions/checkout to v4 (#19228)
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yaml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index bf4342d119..d09466f82d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,7 +14,7 @@ jobs: runs-on: [self-hosted, Linux, x86_64] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build and Test run: sh ci/x86_64-linux-debug.sh x86_64-linux-release: @@ -22,7 +22,7 @@ jobs: runs-on: [self-hosted, Linux, x86_64] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build and Test run: sh ci/x86_64-linux-release.sh aarch64-linux-debug: @@ -30,7 +30,7 @@ jobs: runs-on: [self-hosted, Linux, aarch64] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build and Test run: sh ci/aarch64-linux-debug.sh aarch64-linux-release: @@ -38,7 +38,7 @@ jobs: runs-on: [self-hosted, Linux, aarch64] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build and Test run: sh ci/aarch64-linux-release.sh x86_64-macos-release: @@ -47,7 +47,7 @@ jobs: ARCH: "x86_64" steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build and Test run: ci/x86_64-macos-release.sh aarch64-macos-debug: @@ -56,7 +56,7 @@ jobs: ARCH: "aarch64" steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build and Test run: ci/aarch64-macos-debug.sh aarch64-macos-release: @@ -65,7 +65,7 @@ jobs: ARCH: "aarch64" steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build and Test run: ci/aarch64-macos-release.sh x86_64-windows-debug: @@ -74,7 +74,7 @@ jobs: ARCH: "x86_64" steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build and Test run: ci/x86_64-windows-debug.ps1 x86_64-windows-release: @@ -83,7 +83,7 @@ jobs: ARCH: "x86_64" steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build and Test run: ci/x86_64-windows-release.ps1 aarch64-windows: @@ -92,6 +92,6 @@ jobs: ARCH: "aarch64" steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build and Test run: ci/aarch64-windows.ps1 |
