Skip to content

Commit

Permalink
update to gradle 8.1 (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
ToppleTheNun authored Apr 15, 2023
1 parent 35c7491 commit 7e0fd52
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
name: Qodana

permissions: read-all

on:
workflow_dispatch:
pull_request:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
#
name: CI

permissions: read-all

on:
push:
branches: ['main']
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/mega-linter.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
---
# MegaLinter GitHub Action configuration file
# More info at https://oxsecurity.github.io/megalinter
name: MegaLinter

permissions: read-all

on:
# Trigger mega-linter at every push. Action will also be visible from Pull Requests to master
push: # Comment this line to trigger action only on pull-requests (not recommended if you don't pay for GH Actions)
Expand Down Expand Up @@ -56,7 +57,7 @@ jobs:
# Upload MegaLinter artifacts
- name: Archive production artifacts
if: ${{ success() }} || ${{ failure() }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: MegaLinter reports
path: |
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-all.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pluginManagement {
plugins {
// See https://jmfayard.github.io/refreshVersions
id("de.fayard.refreshVersions") version "0.51.0"
id("com.gradle.enterprise") version "3.12.6"
id("com.gradle.enterprise") version "3.13"
}

gradleEnterprise {
Expand Down
2 changes: 1 addition & 1 deletion version.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=5.1.*
version=5.2.*
4 changes: 3 additions & 1 deletion versions.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
#### suppress inspection "SpellCheckingInspection" for whole file
#### suppress inspection "UnusedProperty" for whole file

plugin.com.gradle.plugin-publish=1.1.0
plugin.com.gradle.plugin-publish=1.2.0

plugin.io.gitlab.arturbosch.detekt=1.22.0
## # available=1.23.0-RC1

plugin.org.jetbrains.dokka=1.8.10

Expand All @@ -36,6 +37,7 @@ version.org.jetbrains.dokka..dokka-gradle-plugin=1.8.10
version.com.netflix.nebula..nebula-project-plugin=10.1.2

version.io.gitlab.arturbosch.detekt..detekt-gradle-plugin=1.22.0
## # available=1.23.0-RC1

version.org.jlleitschuh.gradle..ktlint-gradle=11.3.1

Expand Down

0 comments on commit 7e0fd52

Please sign in to comment.