Skip to content

Commit f001a58

Browse files
authored
Update some plugin dependencies (#211)
* update dependencies * update schedule
1 parent 63fa8aa commit f001a58

File tree

6 files changed

+14
-9
lines changed

6 files changed

+14
-9
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ updates:
77
- package-ecosystem: "gradle"
88
directory: "/"
99
schedule:
10-
interval: "daily"
10+
interval: "monthly"
1111
# Maintain dependencies for GitHub Actions
1212
- package-ecosystem: "github-actions"
1313
directory: "/"
1414
schedule:
15-
interval: "daily"
15+
interval: "monthly"

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@ jobs:
159159
- name: Fetch Sources
160160
uses: actions/checkout@v4
161161
with:
162-
ref: ${{ github.event.pull_request.head.sha }}
163-
fetch-depth: 0
162+
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
163+
fetch-depth: 0 # a full history is required for pull request analysis
164164

165165
# Set up Java environment for the next steps
166166
- name: Setup Java
@@ -171,7 +171,7 @@ jobs:
171171

172172
# Run Qodana inspections
173173
- name: Qodana - Code Inspection
174-
uses: JetBrains/qodana-action@v2024.1.9
174+
uses: JetBrains/qodana-action@v2024.2
175175
with:
176176
cache-default-branch-only: true
177177

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
## [Unreleased]
66

7+
### Changed
8+
9+
- Update gradleVersion to 8.10.2
10+
- Update qodana to 2024.2.3
11+
712
## [2.0.7] - 2024-10-01
813

914
### Changed

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pluginGroup = com.jfrog.conan.clion
44
pluginName = Conan
55
pluginRepositoryUrl = https://github.com/conan-io/conan-clion-plugin/
66
# SemVer format -> https://semver.org
7-
pluginVersion = 2.0.7
7+
pluginVersion = 2.0.8
88

99
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010
pluginSinceBuild = 241
@@ -21,7 +21,7 @@ platformPlugins =
2121
platformBundledPlugins = com.intellij.clion
2222

2323
# Gradle Releases -> https://github.com/gradle/gradle/releases
24-
gradleVersion = 8.9
24+
gradleVersion = 8.10.2
2525

2626
# Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib
2727
kotlin.stdlib.default.dependency = false

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ changelog = "2.2.1"
99
intelliJPlatform = "2.1.0"
1010
kotlin = "1.9.25"
1111
kover = "0.8.3"
12-
qodana = "2024.1.9"
12+
qodana = "2024.2.3"
1313
serialization = "1.8.21"
1414

1515
[libraries]

qodana.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://www.jetbrains.com/help/qodana/qodana-yaml.html
33

44
version: 1.0
5-
linter: jetbrains/qodana-jvm-community:latest
5+
linter: jetbrains/qodana-jvm-community:2024.2
66
projectJDK: "17"
77
profile:
88
name: qodana.recommended

0 commit comments

Comments
 (0)