From afeb6f17c4c11bcfc659988662ea862e2775e51f Mon Sep 17 00:00:00 2001 From: Mark Haslinghuis Date: Thu, 15 Feb 2024 13:47:38 +0100 Subject: [PATCH] Bump workflow action (#13355) * Bump workflow action * Address artifact issue --- .github/workflows/build-release.yml | 2 +- .github/workflows/ci.yml | 10 +++++----- .github/workflows/nightly.yml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) 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