Skip to content

Commit 3716401

Browse files
authored
Merge branch 'master' into SRE-000-upgrade-download-artifact-action
2 parents 6f70aea + 073a7a8 commit 3716401

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/build-python.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ jobs:
314314
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
315315
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
316316
if: '!inputs.skip-sonar && github.event_name != ''pull_request'''
317-
uses: SonarSource/sonarcloud-github-action@master
317+
uses: SonarSource/sonarqube-scan-action@v4
318318
with:
319319
args: |-
320320
-Dsonar.python.coverage.reportPaths=coverage.xml
@@ -326,7 +326,7 @@ jobs:
326326
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
327327
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
328328
if: '!inputs.skip-sonar && github.event_name != ''push'''
329-
uses: SonarSource/sonarcloud-github-action@master
329+
uses: SonarSource/sonarqube-scan-action@v4
330330
with:
331331
args: |-
332332
-Dsonar.python.coverage.reportPaths=coverage.xml

.github/workflows/deploy-integration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ jobs:
544544
run: cd ./code && skaffold build --filename=../skaffold.yaml --file-output=build.json
545545
- name: Archive build reference
546546
if: '!inputs.skip-build'
547-
uses: actions/upload-artifact@v3
547+
uses: actions/upload-artifact@v4
548548
with:
549549
name: build-ref
550550
path: ./code/build.json

pkg/common/deploy-integration.cue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ import "list"
228228
{
229229
name: "Archive build reference"
230230
if: "!inputs.skip-build"
231-
uses: "actions/upload-artifact@v3"
231+
uses: "actions/upload-artifact@v4"
232232
with: {
233233
name: "build-ref"
234234
path: "./code/build.json"

pkg/workflows/build-python.cue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ common.#workflow & {
252252
SONAR_TOKEN: "${{ secrets.SONAR_TOKEN }}"
253253
}
254254
if: "!inputs.skip-sonar && github.event_name != 'pull_request'"
255-
uses: "SonarSource/sonarcloud-github-action@master"
255+
uses: "SonarSource/sonarqube-scan-action@v4"
256256
with: {
257257
args: """
258258
-Dsonar.python.coverage.reportPaths=coverage.xml
@@ -269,7 +269,7 @@ common.#workflow & {
269269
SONAR_TOKEN: "${{ secrets.SONAR_TOKEN }}"
270270
}
271271
if: "!inputs.skip-sonar && github.event_name != 'push'"
272-
uses: "SonarSource/sonarcloud-github-action@master"
272+
uses: "SonarSource/sonarqube-scan-action@v4"
273273
with: {
274274
args: """
275275
-Dsonar.python.coverage.reportPaths=coverage.xml

0 commit comments

Comments
 (0)