From 22a102fcbdc0842440779714ff140f01a450fdc6 Mon Sep 17 00:00:00 2001 From: Liviu Burcusel Date: Mon, 8 Dec 2025 16:13:07 +0100 Subject: [PATCH] Reordering actions --- .github/workflows/sonar.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index b5872eb..2620198 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -59,11 +59,6 @@ jobs: apk add nodejs npm node --version npm --version - - name: Download build artifacts - uses: actions/download-artifact@v3 - with: - name: output - path: ./output - name: List files (before checkout) run: | echo "Current directory:" @@ -71,13 +66,15 @@ jobs: echo "===============================" echo "Content of current directory:" ls -all - echo "===============================" - echo "Content of output directory:" - ls -all ./output - name: Code checkout uses: actions/checkout@v4 with: fetch-depth: 0 + - name: Download build artifacts + uses: actions/download-artifact@v3 + with: + name: output + path: ./output - name: List files (after checkout) run: | echo "Current directory:"