Skip to content

Commit 288f28e

Browse files
Roll back all Sonar GitHub Actions
1 parent a554d34 commit 288f28e

12 files changed

+22
-22
lines changed

.github/workflows/AutomateRelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
release:
4848
name: Release
49-
uses: SonarSource/release-github-actions/.github/workflows/cloud-security-automated-release.yml@v1
49+
uses: SonarSource/release-github-actions/.github/workflows/cloud-security-automated-release.yml@1.1.2
5050
needs: lock-branch
5151
permissions:
5252
statuses: read

.github/workflows/PullRequestClosed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
github.event.pull_request.head.repo.full_name == github.repository
1717
steps:
1818
- id: secrets
19-
uses: SonarSource/vault-action-wrapper@v3
19+
uses: SonarSource/vault-action-wrapper@3.1.0
2020
with:
2121
secrets: |
2222
development/kv/data/jira user | JIRA_USER;

.github/workflows/PullRequestCreated.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
&& github.event.sender.type != 'Bot'
1717
steps:
1818
- id: secrets
19-
uses: SonarSource/vault-action-wrapper@v3
19+
uses: SonarSource/vault-action-wrapper@3.1.0
2020
with:
2121
secrets: |
2222
development/github/token/{REPO_OWNER_NAME_DASH}-jira token | GITHUB_TOKEN;

.github/workflows/RequestReview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
github.event.pull_request.head.repo.full_name == github.repository
1616
steps:
1717
- id: secrets
18-
uses: SonarSource/vault-action-wrapper@v3
18+
uses: SonarSource/vault-action-wrapper@3.1.0
1919
with:
2020
secrets: |
2121
development/github/token/{REPO_OWNER_NAME_DASH}-jira token | GITHUB_TOKEN;

.github/workflows/SubmitReview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
|| github.event.review.state == 'approved')
1919
steps:
2020
- id: secrets
21-
uses: SonarSource/vault-action-wrapper@v3
21+
uses: SonarSource/vault-action-wrapper@3.1.0
2222
with:
2323
secrets: |
2424
development/kv/data/jira user | JIRA_USER;

.github/workflows/ToggleLockBranch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
id-token: write
2323
steps:
2424
- id: secrets
25-
uses: SonarSource/vault-action-wrapper@v3
25+
uses: SonarSource/vault-action-wrapper@3.1.0
2626
with:
2727
secrets: |
2828
development/github/token/{REPO_OWNER_NAME_DASH}-lock token | lock_token;

.github/workflows/build.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ jobs:
4646
rm gradle-md5-sums.txt
4747
- &cache-gradle-dependencies
4848
name: Cache Gradle Dependencies
49-
uses: SonarSource/ci-github-actions/cache@v1
49+
uses: SonarSource/ci-github-actions/cache@1.3.17
5050
with:
5151
path: ${{ env.GRADLE_USER_HOME }}
5252
key: gradle-${{ env.GRADLE_CACHE_KEY }}
53-
- uses: SonarSource/ci-github-actions/build-gradle@v1
53+
- uses: SonarSource/ci-github-actions/build-gradle@1.3.17
5454
with:
5555
deploy-pull-request: true
5656
skip-tests: true
@@ -72,7 +72,7 @@ jobs:
7272
- *checkout-build-logic
7373
- *create-gradle-user-home
7474
- *cache-gradle-dependencies
75-
- uses: SonarSource/ci-github-actions/build-gradle@v1
75+
- uses: SonarSource/ci-github-actions/build-gradle@1.3.17
7676
with:
7777
deploy-pull-request: false
7878
skip-tests: false
@@ -109,7 +109,7 @@ jobs:
109109
- *checkout-build-logic
110110
- *create-gradle-user-home
111111
- *cache-gradle-dependencies
112-
- uses: SonarSource/ci-github-actions/build-gradle@v1
112+
- uses: SonarSource/ci-github-actions/build-gradle@1.3.17
113113
with:
114114
deploy-pull-request: false
115115
skip-tests: false
@@ -154,20 +154,20 @@ jobs:
154154
mkdir -p "${GITHUB_WORKSPACE}/orchestrator/${TODAY}"
155155
- &cache-orchestrator
156156
name: Cache Orchestrator
157-
uses: SonarSource/ci-github-actions/cache@v1
157+
uses: SonarSource/ci-github-actions/cache@1.3.17
158158
with:
159159
path: ${{ env.ORCHESTRATOR_HOME }}
160160
key: orchestrator-${{ env.TODAY }}
161161
enableCrossOsArchive: true
162162
- &orchestrator-secrets
163-
uses: SonarSource/vault-action-wrapper@v3
163+
uses: SonarSource/vault-action-wrapper@3.1.0
164164
id: secrets
165165
with:
166166
secrets: |
167167
development/artifactory/token/{REPO_OWNER_NAME_DASH}-public-reader access_token | ARTIFACTORY_ACCESS_TOKEN;
168168
development/github/token/licenses-ro token | GITHUB_TOKEN;
169169
- name: Run QA Plugin Tests
170-
uses: SonarSource/ci-github-actions/build-gradle@v1
170+
uses: SonarSource/ci-github-actions/build-gradle@1.3.17
171171
env:
172172
ARTIFACTORY_ACCESS_TOKEN: ${{ fromJSON(steps.secrets.outputs.vault).ARTIFACTORY_ACCESS_TOKEN }}
173173
GITHUB_TOKEN: ${{ fromJSON(steps.secrets.outputs.vault).GITHUB_TOKEN }}
@@ -214,7 +214,7 @@ jobs:
214214
- *cache-orchestrator
215215
- *orchestrator-secrets
216216
- name: Run QA Ruling Tests
217-
uses: SonarSource/ci-github-actions/build-gradle@v1
217+
uses: SonarSource/ci-github-actions/build-gradle@1.3.17
218218
env:
219219
ARTIFACTORY_ACCESS_TOKEN: ${{ fromJSON(steps.secrets.outputs.vault).ARTIFACTORY_ACCESS_TOKEN }}
220220
GITHUB_TOKEN: ${{ fromJSON(steps.secrets.outputs.vault).GITHUB_TOKEN }}
@@ -261,7 +261,7 @@ jobs:
261261
- *cache-orchestrator
262262
- *orchestrator-secrets
263263
- name: Run PR Analysis Integration Tests
264-
uses: SonarSource/ci-github-actions/build-gradle@v1
264+
uses: SonarSource/ci-github-actions/build-gradle@1.3.17
265265
env:
266266
ARTIFACTORY_ACCESS_TOKEN: ${{ fromJSON(steps.secrets.outputs.vault).ARTIFACTORY_ACCESS_TOKEN }}
267267
GITHUB_TOKEN: ${{ fromJSON(steps.secrets.outputs.vault).GITHUB_TOKEN }}
@@ -298,7 +298,7 @@ jobs:
298298
id-token: write
299299
contents: write
300300
steps:
301-
- uses: SonarSource/ci-github-actions/promote@v1
301+
- uses: SonarSource/ci-github-actions/promote@1.3.17
302302
with:
303303
promote-pull-request: true
304304

.github/workflows/pr-cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ jobs:
99
permissions:
1010
actions: write
1111
steps:
12-
- uses: SonarSource/ci-github-actions/pr_cleanup@v1
12+
- uses: SonarSource/ci-github-actions/pr_cleanup@1.3.17

.github/workflows/releasability-status.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
statuses: write
1919
contents: read
2020
steps:
21-
- uses: SonarSource/gh-action_releasability/releasability-status@v3
21+
- uses: SonarSource/gh-action_releasability/releasability-status@3.0.2
2222
with:
2323
optional_checks: 'jira'
2424
env:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
permissions:
2828
id-token: write
2929
contents: write
30-
uses: SonarSource/gh-action_release/.github/workflows/main.yaml@v6
30+
uses: SonarSource/gh-action_release/.github/workflows/main.yaml@6.2.0
3131
with:
3232
version: ${{ inputs.version }}
3333
releaseId: ${{ inputs.releaseId }}

0 commit comments

Comments
 (0)