File tree 2 files changed +11
-3
lines changed
2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 13
13
pull-requests : write
14
14
steps :
15
15
- run : sudo apt install -y jq
16
-
16
+ - run : sudo snap install yq
17
17
- uses : actions/checkout@v4
18
18
with :
19
19
ref : master
31
31
run : |
32
32
./scripts/fetch_latest_version.sh > sonar-scanner-version
33
33
cat sonar-scanner-version >> $GITHUB_OUTPUT
34
-
34
+ - name : " Update default version"
35
+ if : steps.tagged-version.outputs.sonar-scanner-version != steps.latest-version.outputs.sonar-scanner-version
36
+ shell : bash
37
+ env :
38
+ NEW_VERSION : ${{ steps.latest-version.outputs.sonar-scanner-version }}
39
+ run : |
40
+ yq -i '.inputs.scannerVersion.default = "${NEW_VERSION}"' action.yml
35
41
- name : " Create Pull Request for version update"
36
42
if : steps.tagged-version.outputs.sonar-scanner-version != steps.latest-version.outputs.sonar-scanner-version
37
43
shell : bash
44
50
git config --global user.email "[email protected] "
45
51
git checkout -b ${UPDATE_BRANCH}
46
52
git add sonar-scanner-version
53
+ git add action.yml
47
54
git commit -m "${TITLE}"
48
55
git push --force-with-lease origin ${UPDATE_BRANCH}
49
56
gh pr list
Original file line number Diff line number Diff line change @@ -16,7 +16,8 @@ inputs:
16
16
scannerVersion :
17
17
description : Version of the Sonar Scanner CLI to use
18
18
required : false
19
- default : 6.2.1.4610 # to be kept in sync with sonar-scanner-version
19
+ # to be kept in sync with sonar-scanner-version
20
+ default : 6.2.1.4610
20
21
scannerBinariesUrl :
21
22
description : URL to download the Sonar Scanner CLI binaries from
22
23
required : false
You can’t perform that action at this time.
0 commit comments