Skip to content

Commit

Permalink
⬆️ Update qodana to v2023.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
qodana-bot authored and tiulpin committed Aug 7, 2023
1 parent e4d543c commit a5652f7
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 26 deletions.
12 changes: 6 additions & 6 deletions common/cli.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"version": "2023.2.5",
"version": "2023.2.6",
"checksum": {
"windows_x86_64": "f301d00d4814ebaf8eef0be044a641bb6d79b2445d2f84c0874cb9fd3eb078bb",
"linux_arm64": "489c0175daffc68b3b86dd24746e229941636cc5c476c6a5f998e0e2b5a40643",
"windows_x86_64": "6807d66481839c68c2ec0590112b88b070ed9ebd49967219a008c1f6a89f6210",
"linux_arm64": "72d95ec82246f668ccab606c37784226440f374601fb70330836dc3d03ee0314",
"darwin_arm64": "722ffb66a23fa0d6d8aef4dabf8b1e520bab04c7c1232b5d0d1859e7113dc6a8",
"darwin_x86_64": "cc7bf6af28bc26cbe7f4ff76906a1a87e19321082003edf4c014f6bdd4874c95",
"windows_arm64": "321fd42ae147f80b5ca0a83fdf4251698a8e8b84c489085645873a7a505654b9",
"linux_x86_64": "f808df536b4fda735dea406b65ba5db07ba4d2641485c1c372f3595a2e3a571c",
"darwin_all": "57924e8eedbe89cc669532160268a1e92210d4057599c413f9b01916c8a5aad0"
"windows_arm64": "e61882592ced61ea6d3d96009f2341f4b07b58078cd3ba326608b8d92d867e09",
"linux_x86_64": "268512c665881a4b02342419ca4973151ba5234ab5322a3e644b729bea0fa8ee",
"darwin_all": "448d400841afebb43479b5845cc344cc80ed0c600fc898f9e1f6a2a86824a130"
}
}
2 changes: 1 addition & 1 deletion scan/__tests__/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ To get \`*.log\` files or any other Qodana artifacts, run the action with \`uplo
so that the action will upload the files as the job artifacts:
\`\`\`yaml
- name: 'Qodana Scan'
uses: JetBrains/qodana-action@v2023.2.5
uses: JetBrains/qodana-action@v2023.2.6
with:
upload-result: true
\`\`\`
Expand Down
12 changes: 6 additions & 6 deletions scan/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8521,15 +8521,15 @@ var require_io = __commonJS({
var version2, checksum;
var init_cli = __esm({
"../common/cli.json"() {
version2 = "2023.2.5";
version2 = "2023.2.6";
checksum = {
windows_x86_64: "f301d00d4814ebaf8eef0be044a641bb6d79b2445d2f84c0874cb9fd3eb078bb",
linux_arm64: "489c0175daffc68b3b86dd24746e229941636cc5c476c6a5f998e0e2b5a40643",
windows_x86_64: "6807d66481839c68c2ec0590112b88b070ed9ebd49967219a008c1f6a89f6210",
linux_arm64: "72d95ec82246f668ccab606c37784226440f374601fb70330836dc3d03ee0314",
darwin_arm64: "722ffb66a23fa0d6d8aef4dabf8b1e520bab04c7c1232b5d0d1859e7113dc6a8",
darwin_x86_64: "cc7bf6af28bc26cbe7f4ff76906a1a87e19321082003edf4c014f6bdd4874c95",
windows_arm64: "321fd42ae147f80b5ca0a83fdf4251698a8e8b84c489085645873a7a505654b9",
linux_x86_64: "f808df536b4fda735dea406b65ba5db07ba4d2641485c1c372f3595a2e3a571c",
darwin_all: "57924e8eedbe89cc669532160268a1e92210d4057599c413f9b01916c8a5aad0"
windows_arm64: "e61882592ced61ea6d3d96009f2341f4b07b58078cd3ba326608b8d92d867e09",
linux_x86_64: "268512c665881a4b02342419ca4973151ba5234ab5322a3e644b729bea0fa8ee",
darwin_all: "448d400841afebb43479b5845cc344cc80ed0c600fc898f9e1f6a2a86824a130"
};
}
});
Expand Down
6 changes: 3 additions & 3 deletions src/commands/scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ steps:
name: Qodana Scan
command: |
set -e
QODANA_SHA_256=603cfe2f5919ec3a2e688a066b2a921c193480856062a72fc1b13a3298d78b54
CLI_DIRECTORY=/tmp/cache/qodana-cli/2023.2.5
QODANA_SHA_256=bbf1109f158d999c61a9dc33eb38b8a205d819bc12d43e80a2ddf9ba458c970e
CLI_DIRECTORY=/tmp/cache/qodana-cli/2023.2.6
mkdir -p $CLI_DIRECTORY
if [[ ! -x "$CLI_DIRECTORY/qodana" ]]; then
curl -fsSL https://jb.gg/qodana-cli/install | bash -s -- \
v2023.2.5 $CLI_DIRECTORY \
v2023.2.6 $CLI_DIRECTORY \
1> /dev/null
fi
echo "$QODANA_SHA_256 $CLI_DIRECTORY/qodana" | sha256sum -c
Expand Down
2 changes: 1 addition & 1 deletion src/examples/scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: >
usage:
version: 2.1
orbs:
qodana: jetbrains/qodana@2023.2.5
qodana: jetbrains/qodana@2023.2.6
jobs:
code-quality:
machine:
Expand Down
12 changes: 6 additions & 6 deletions vsts/QodanaScan/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
var version, checksum;
var init_cli = __esm({
"../common/cli.json"() {
version = "2023.2.5";
version = "2023.2.6";
checksum = {
windows_x86_64: "f301d00d4814ebaf8eef0be044a641bb6d79b2445d2f84c0874cb9fd3eb078bb",
linux_arm64: "489c0175daffc68b3b86dd24746e229941636cc5c476c6a5f998e0e2b5a40643",
windows_x86_64: "6807d66481839c68c2ec0590112b88b070ed9ebd49967219a008c1f6a89f6210",
linux_arm64: "72d95ec82246f668ccab606c37784226440f374601fb70330836dc3d03ee0314",
darwin_arm64: "722ffb66a23fa0d6d8aef4dabf8b1e520bab04c7c1232b5d0d1859e7113dc6a8",
darwin_x86_64: "cc7bf6af28bc26cbe7f4ff76906a1a87e19321082003edf4c014f6bdd4874c95",
windows_arm64: "321fd42ae147f80b5ca0a83fdf4251698a8e8b84c489085645873a7a505654b9",
linux_x86_64: "f808df536b4fda735dea406b65ba5db07ba4d2641485c1c372f3595a2e3a571c",
darwin_all: "57924e8eedbe89cc669532160268a1e92210d4057599c413f9b01916c8a5aad0"
windows_arm64: "e61882592ced61ea6d3d96009f2341f4b07b58078cd3ba326608b8d92d867e09",
linux_x86_64: "268512c665881a4b02342419ca4973151ba5234ab5322a3e644b729bea0fa8ee",
darwin_all: "448d400841afebb43479b5845cc344cc80ed0c600fc898f9e1f6a2a86824a130"
};
}
});
Expand Down
2 changes: 1 addition & 1 deletion vsts/QodanaScan/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"version": {
"Major": 2023,
"Minor": 2,
"Patch": 5
"Patch": 6
},
"demands": [
"RemoteDockerServerOS -equals linux"
Expand Down
2 changes: 1 addition & 1 deletion vsts/vss-extension.dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifestVersion": 1,
"id": "qodana-dev",
"name": "Qodana (Dev)",
"version": "2023.2.5",
"version": "2023.2.6",
"publisher": "JetBrains",
"targets": [
{
Expand Down
2 changes: 1 addition & 1 deletion vsts/vss-extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifestVersion": 1,
"id": "qodana",
"name": "Qodana",
"version": "2023.2.5",
"version": "2023.2.6",
"public": true,
"publisher": "JetBrains",
"targets": [
Expand Down

0 comments on commit a5652f7

Please sign in to comment.