From 795eb588e34b6815033b769d54fcf7cfac4aae3a Mon Sep 17 00:00:00 2001 From: Wojciech Sipak Date: Thu, 3 Oct 2024 14:38:23 +0200 Subject: [PATCH] fix renode version --- .github/workflows/get-renode.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/get-renode.yml b/.github/workflows/get-renode.yml index 5ca7c0b9e88..57c7beeaf41 100644 --- a/.github/workflows/get-renode.yml +++ b/.github/workflows/get-renode.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest env: TOOL_NAME: renode - TOOL_VERSION: latest + TOOL_VERSION: 1.15.3+20240924gitc7bc336bb DEBIAN_FRONTEND: "noninteractive" steps: @@ -37,10 +37,10 @@ jobs: key: ${{ env.cache_name }}_${{ env.cache_date }} restore-keys: ${{ env.cache_name }}_ - - name: Get latest nightly release + - name: Get Renode if: ${{ steps.cache.outputs.cache-hit != 'true' }} run: | - wget https://builds.renode.io/renode-latest.linux-portable.tar.gz + wget https://builds.renode.io/renode-${{ env.TOOL_VERSION}}.linux-portable.tar.gz - name: Rename the archive if: ${{ steps.cache.outputs.cache-hit != 'true' }}