Skip to content

Commit

Permalink
🧱 Fix project after dependabots
Browse files Browse the repository at this point in the history
  • Loading branch information
tiulpin committed Mar 11, 2024
1 parent 19ac427 commit c0a36fb
Show file tree
Hide file tree
Showing 18 changed files with 6,783 additions and 4,156 deletions.
8 changes: 4 additions & 4 deletions GRADLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ Apply Gradle plugin `org.jetbrains.qodana` in the Gradle configuration file:

```groovy
plugins {
id "org.jetbrains.qodana" version "2023.3.1"
id "org.jetbrains.qodana" version "2023.3.2"
}
```

- Kotlin DSL – `build.gradle.kts`

```kotlin
plugins {
id("org.jetbrains.qodana") version "2023.3.1"
id("org.jetbrains.qodana") version "2023.3.2"
}
```

Expand Down Expand Up @@ -64,7 +64,7 @@ Add this to your Gradle configuration file:
```groovy
plugins {
// applies Gradle Qodana plugin to use it in project
id "org.jetbrains.qodana" version "2023.3.1"
id "org.jetbrains.qodana" version "2023.3.2"
}
qodana {
Expand All @@ -82,7 +82,7 @@ Add this to your Gradle configuration file:
```kotlin
plugins {
// applies Gradle Qodana plugin to use it in project
id("org.jetbrains.qodana") version "2023.3.1"
id("org.jetbrains.qodana") version "2023.3.2"
}

qodana {
Expand Down
2 changes: 1 addition & 1 deletion common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
],
"devDependencies": {
"@types/node": "^20.11.24",
"@typescript-eslint/parser": "^7.1.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-jest": "^27.9.0",
Expand Down
2 changes: 1 addition & 1 deletion common/update-cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ function updateVersions(latestVersion, currentVersion) {
function replaceStringsInProject(newString, oldString) {
process.env.LC_ALL = "C";
const isMacOS = process.platform === "darwin";
const command = `cd .. && find . -type f -not -name "*.js" -exec sed -i${isMacOS ? " ''" : ""} 's/${oldString}/${newString}/g' {} +`;
const command = `cd .. && find . -type f -exec sed -i${isMacOS ? " ''" : ""} 's/${oldString}/${newString}/g' {} +`;
execSync(command, { shell: "/bin/bash" });
}

Expand Down
4 changes: 2 additions & 2 deletions orb/commands/scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ steps:
command: |
set -e
QODANA_SHA_256=71abcb82489daba6200b5791ee56058a2f8ad8a87f8bbdcd33e6180906e1e482
CLI_DIRECTORY=/tmp/cache/qodana-cli/2023.3.1
CLI_DIRECTORY=/tmp/cache/qodana-cli/2023.3.2
mkdir -p $CLI_DIRECTORY
if [[ ! -x "$CLI_DIRECTORY/qodana" ]]; then
curl -fsSL https://jb.gg/qodana-cli/install | bash -s -- \
v2023.3.1 $CLI_DIRECTORY \
v2023.3.2 $CLI_DIRECTORY \
1> /dev/null
fi
echo "$QODANA_SHA_256 $CLI_DIRECTORY/qodana" | sha256sum -c
Expand Down
2 changes: 1 addition & 1 deletion orb/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.3.1
qodana: jetbrains/qodana@2023.3.2
jobs:
code-quality:
machine:
Expand Down
Loading

0 comments on commit c0a36fb

Please sign in to comment.