From 1343bfbf2650396ebd6926171d6dbf304c745ba5 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Thu, 14 Jan 2021 14:45:05 +0100 Subject: [PATCH] .github/static-test: use riot/static-test-tools Docker image --- .github/workflows/static-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/static-test.yml b/.github/workflows/static-test.yml index 5b48f11adc..551a5e8710 100644 --- a/.github/workflows/static-test.yml +++ b/.github/workflows/static-test.yml @@ -26,8 +26,8 @@ jobs: git fetch origin ${{ github.base_ref }}:${{ github.base_ref }} --no-tags fi git config apply.whitespace nowarn - - name: Fetch riot/riotbuild Docker image - run: docker pull riot/riotbuild:latest + - name: Fetch riot/static-test-tools Docker image + run: docker pull riot/static-test-tools:latest - name: Run static-tests run: | # Note: ${{ github.base_ref }} is empty when not in a PR @@ -35,5 +35,5 @@ jobs: -e CI_BASE_BRANCH=${{ github.base_ref }} \ -e GITHUB_RUN_ID=${GITHUB_RUN_ID} \ -v $(pwd):/data/riotbuild \ - riot/riotbuild:latest \ + riot/static-test-tools:latest \ make static-test