From: Jeremy Davis Date: Thu, 2 Nov 2023 10:14:44 +0000 (+0100) Subject: SONAR-20943 Fix typo in github cache action for dotnet X-Git-Tag: 10.3.0.82913~44 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=99ea7c2e532068deaa7c42be8ed418c34cc1b0c0;p=sonarqube.git SONAR-20943 Fix typo in github cache action for dotnet --- diff --git a/server/sonar-web/src/main/js/components/tutorials/github-action/__tests__/__snapshots__/GithubActionTutorial-it.tsx.snap b/server/sonar-web/src/main/js/components/tutorials/github-action/__tests__/__snapshots__/GithubActionTutorial-it.tsx.snap index 7118309d008..0d4632cdeec 100644 --- a/server/sonar-web/src/main/js/components/tutorials/github-action/__tests__/__snapshots__/GithubActionTutorial-it.tsx.snap +++ b/server/sonar-web/src/main/js/components/tutorials/github-action/__tests__/__snapshots__/GithubActionTutorial-it.tsx.snap @@ -26,7 +26,7 @@ jobs: - name: Cache SonarQube packages uses: actions/cache@v1 with: - path: ~\\sonar\\cache + path: ~\\.sonar\\cache key: \${{ runner.os }}-sonar restore-keys: \${{ runner.os }}-sonar - name: Cache SonarQube scanner diff --git a/server/sonar-web/src/main/js/components/tutorials/github-action/commands/DotNet.tsx b/server/sonar-web/src/main/js/components/tutorials/github-action/commands/DotNet.tsx index 998cec200f3..c0820ba75a2 100644 --- a/server/sonar-web/src/main/js/components/tutorials/github-action/commands/DotNet.tsx +++ b/server/sonar-web/src/main/js/components/tutorials/github-action/commands/DotNet.tsx @@ -38,7 +38,7 @@ function dotnetYamlSteps(projectKey: string) { - name: Cache SonarQube packages uses: actions/cache@v1 with: - path: ~\\sonar\\cache + path: ~\\.sonar\\cache key: \${{ runner.os }}-sonar restore-keys: \${{ runner.os }}-sonar - name: Cache SonarQube scanner