File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4242
4343 # Initializes the CodeQL tools for scanning.
4444 - name : Initialize CodeQL
45- uses : github/codeql-action/init@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18
45+ uses : github/codeql-action/init@fca7ace96b7d713c7035871441bd52efbe39e27e # v3.28.19
4646 with :
4747 languages : ${{ matrix.language }}
4848 # If you wish to specify custom queries, you can do so here or in a config file.
5353 # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5454 # If this step fails, then you should remove it and run the build manually (see below)
5555 - name : Autobuild
56- uses : github/codeql-action/autobuild@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18
56+ uses : github/codeql-action/autobuild@fca7ace96b7d713c7035871441bd52efbe39e27e # v3.28.19
5757
5858 # ℹ️ Command-line programs to run using the OS shell.
5959 # 📚 https://git.io/JvXDl
6767 # make release
6868
6969 - name : Perform CodeQL Analysis
70- uses : github/codeql-action/analyze@ff0a06e83cb2de871e5a09832bc6a81e7276941f # v3.28.18
70+ uses : github/codeql-action/analyze@fca7ace96b7d713c7035871441bd52efbe39e27e # v3.28.19
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ require (
1111 github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources v1.2.0
1212 github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/subscription/armsubscription v1.2.0
1313 github.com/blang/semver/v4 v4.0.0
14- github.com/briandowns/spinner v1.23.1
14+ github.com/briandowns/spinner v1.23.2
1515 github.com/cenkalti/backoff/v4 v4.3.0
1616 github.com/fatih/color v1.17.0
1717 github.com/ghodss/yaml v1.0.0
Original file line number Diff line number Diff line change @@ -59,8 +59,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
5959github.com/beorn7/perks v1.0.1 /go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw =
6060github.com/blang/semver/v4 v4.0.0 h1:1PFHFE6yCCTv8C1TeyNNarDzntLi7wMI5i/pzqYIsAM =
6161github.com/blang/semver/v4 v4.0.0 /go.mod h1:IbckMUScFkM3pff0VJDNKRiT6TG/YpiHIM2yvyW5YoQ =
62- github.com/briandowns/spinner v1.23.1 h1:t5fDPmScwUjozhDj4FA46p5acZWIPXYE30qW2Ptu650 =
63- github.com/briandowns/spinner v1.23.1 /go.mod h1:LaZeM4wm2Ywy6vO571mvhQNRcWfRUnXOs0RcKV0wYKM =
62+ github.com/briandowns/spinner v1.23.2 h1:Zc6ecUnI+YzLmJniCfDNaMbW0Wid1d5+qcTq4L2FW8w =
63+ github.com/briandowns/spinner v1.23.2 /go.mod h1:LaZeM4wm2Ywy6vO571mvhQNRcWfRUnXOs0RcKV0wYKM =
6464github.com/bshuster-repo/logrus-logstash-hook v1.0.0 h1:e+C0SB5R1pu//O4MQ3f9cFuPGoOVeF2fE4Og9otCc70 =
6565github.com/bshuster-repo/logrus-logstash-hook v1.0.0 /go.mod h1:zsTqEiSzDgAa/8GZR7E1qaXrhYNDKBYy5/dWPTIflbk =
6666github.com/bugsnag/bugsnag-go v0.0.0-20141110184014-b1d153021fcd h1:rFt+Y/IK1aEZkEHchZRSq9OQbsSzIT/OrI8YFFmRIng =
Original file line number Diff line number Diff line change @@ -159,14 +159,16 @@ install() {
159159 fi
160160
161161 log INFO " validating ARCH: $ARCH "
162- if [[ " $ARCH " != " x86_64" && " $ARCH " != " arm64" ]]; then
162+ if [[ " $ARCH " != " x86_64" && " $ARCH " != " arm64" && " $ARCH " != " aarch64 " ]]; then
163163 echo " Draft CLI is only available for linux x86_64 and arm64 architecture"
164164 file_issue_prompt
165165 exit 1
166166 fi
167167
168168 if [[ " $ARCH " == " x86_64" ]]; then
169169 ARCH=" amd64"
170+ elif [[ " $ARCH " == " aarch64" ]]; then
171+ ARCH=" arm64"
170172 fi
171173
172174 check_jq_processor_present
You can’t perform that action at this time.
0 commit comments