From d78af27c5ca34ab6b7ccce0f61105ed32f028ecd Mon Sep 17 00:00:00 2001 From: Alexander Myltsev Date: Sat, 3 Feb 2024 15:21:09 +0400 Subject: [PATCH] Switch to checkout v4. --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a3a7894..7f6b3e9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,13 +10,13 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: build disk image run: make image.bin llvm: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install lld run: sudo apt-get install -y lld - name: LLVM build @@ -24,7 +24,7 @@ jobs: macos: runs-on: macos-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: install llvm run: brew install llvm - name: LLVM build