From fc3d35163543e50834af9b55937784dc8d6a53fe Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 24 Jul 2024 15:00:08 +0200 Subject: [PATCH 1/2] chore(deps): update sonarsource/sonar-scanner-cli docker tag to v11 --- .woodpecker/.test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.woodpecker/.test.yml b/.woodpecker/.test.yml index 2729cd3..6d66571 100644 --- a/.woodpecker/.test.yml +++ b/.woodpecker/.test.yml @@ -28,7 +28,7 @@ steps: - event: push branch: ${CI_REPO_DEFAULT_BRANCH} sonar: - image: sonarsource/sonar-scanner-cli:10 + image: sonarsource/sonar-scanner-cli:11 pull: true commands: - wget -q -O- https://git.nyyu.dev/nyyu/ci-scripts/raw/branch/main/sonar.sh | bash -- 2.45.3 From 05fce3d81ad6a8552ebf7c4a1e967f9af0b3df8f Mon Sep 17 00:00:00 2001 From: nyyu Date: Thu, 25 Jul 2024 07:14:28 +0200 Subject: [PATCH 2/2] fix: use curl --- .woodpecker/.test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.woodpecker/.test.yml b/.woodpecker/.test.yml index 6d66571..8a5f5df 100644 --- a/.woodpecker/.test.yml +++ b/.woodpecker/.test.yml @@ -31,7 +31,7 @@ steps: image: sonarsource/sonar-scanner-cli:11 pull: true commands: - - wget -q -O- https://git.nyyu.dev/nyyu/ci-scripts/raw/branch/main/sonar.sh | bash + - curl -s https://git.nyyu.dev/nyyu/ci-scripts/raw/branch/main/sonar.sh | bash secrets: [ sonar_host_url, sonar_token ] when: # path: -- 2.45.3