diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 4e8dce011b..20d359ecca 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Code Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Fetch build artifacts uses: actions/download-artifact@v3 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8e6b296cf2..fedf752d98 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,10 +19,10 @@ jobs: outputs: targets: ${{ steps.get-targets.outputs.targets }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Cache build toolchain - uses: actions/cache@v3 + uses: actions/cache@v4 id: cache-toolchain with: path: tools @@ -49,10 +49,10 @@ jobs: target: ${{ fromJson(needs.setup.outputs.targets) }} steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Fetch toolchain from cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: cache-toolchain with: path: tools @@ -81,7 +81,7 @@ jobs: name: Test runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install dependencies run: sudo apt-get install -y libblocksruntime-dev clang-12 diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index fe504f92d5..5352b68702 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -32,7 +32,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Code Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Fetch build artifacts uses: actions/download-artifact@v3