From 254d34ee822d0f7cd94332baeba888e95957bf76 Mon Sep 17 00:00:00 2001 From: DK96-OS <69859316+DK96-OS@users.noreply.github.com> Date: Thu, 14 Aug 2025 16:05:05 +0200 Subject: [PATCH 1/6] Build Updates: * Update queue/build.gradle - artifact version 0.4.17 --- queue/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/queue/build.gradle b/queue/build.gradle index 5c44163..816cb20 100644 --- a/queue/build.gradle +++ b/queue/build.gradle @@ -20,7 +20,7 @@ publishing { maven(MavenPublication) { groupId = "io.github.dk96-os.coroutines" artifactId = "queue" - version = "0.4.16" + version = "0.4.17" from components.java } } From ca4e1a36c0a93184defd86abd2d081f55ebbb98a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Aug 2025 16:07:19 +0200 Subject: [PATCH 2/6] Dependabot Update actions/checkout from 4 to 5 (#77) Dependabot Update [actions/checkout](https://github.com/actions/checkout) from 4 to 5: - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- .github/workflows/ci_run.yml | 2 +- .github/workflows/coverage_report.yml | 2 +- .github/workflows/coverage_verification.yml | 2 +- .github/workflows/publish_release.yml | 2 +- .github/workflows/test_report.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci_run.yml b/.github/workflows/ci_run.yml index 9352560..5d8d4de 100644 --- a/.github/workflows/ci_run.yml +++ b/.github/workflows/ci_run.yml @@ -19,7 +19,7 @@ jobs: name: CI Run steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Java uses: actions/setup-java@v4 with: diff --git a/.github/workflows/coverage_report.yml b/.github/workflows/coverage_report.yml index aeafc6e..a784ac9 100644 --- a/.github/workflows/coverage_report.yml +++ b/.github/workflows/coverage_report.yml @@ -11,7 +11,7 @@ jobs: contents: read name: Code Coverage steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-java@v4 with: java-version: 17 diff --git a/.github/workflows/coverage_verification.yml b/.github/workflows/coverage_verification.yml index 9202782..6bc8cff 100644 --- a/.github/workflows/coverage_verification.yml +++ b/.github/workflows/coverage_verification.yml @@ -12,7 +12,7 @@ jobs: name: Coverage Verification steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-java@v4 with: java-version: 17 diff --git a/.github/workflows/publish_release.yml b/.github/workflows/publish_release.yml index 7d02e96..ecab65a 100644 --- a/.github/workflows/publish_release.yml +++ b/.github/workflows/publish_release.yml @@ -15,7 +15,7 @@ jobs: name: Publish Release steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-java@v4 with: java-version: '17' diff --git a/.github/workflows/test_report.yml b/.github/workflows/test_report.yml index 2a952f8..6195372 100644 --- a/.github/workflows/test_report.yml +++ b/.github/workflows/test_report.yml @@ -12,7 +12,7 @@ jobs: name: Test Report steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-java@v4 with: java-version: 17 From b8403c3cb03462f645f347ac95f2f38ccc8c1c42 Mon Sep 17 00:00:00 2001 From: DK96-OS <69859316+DK96-OS@users.noreply.github.com> Date: Thu, 14 Aug 2025 16:08:32 +0200 Subject: [PATCH 3/6] GitHub Workflows: * Update ci_run.yml - add default permissions --- .github/workflows/ci_run.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci_run.yml b/.github/workflows/ci_run.yml index 5d8d4de..26e29d7 100644 --- a/.github/workflows/ci_run.yml +++ b/.github/workflows/ci_run.yml @@ -10,6 +10,9 @@ on: - main - 'release-[0-1].[0-9]+.?[0-9]?' +permissions: + contents: read + jobs: build: runs-on: ubuntu-latest From bca8378cde4cb961e6180faa01af1ddab76a024b Mon Sep 17 00:00:00 2001 From: DK96-OS <69859316+DK96-OS@users.noreply.github.com> Date: Thu, 14 Aug 2025 16:09:56 +0200 Subject: [PATCH 4/6] Build Updates: * Update gradle-wrapper.properties - gradle 8.14.3 --- gradle/wrapper/gradle-wrapper.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 0b55a3b..3ae1e2f 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists From 37e8a8be87f946065845485ff9797cfdd08f2c91 Mon Sep 17 00:00:00 2001 From: DK96-OS <69859316+DK96-OS@users.noreply.github.com> Date: Thu, 14 Aug 2025 16:12:21 +0200 Subject: [PATCH 5/6] Build Updates: * Update build.gradle - kotlin 2.2.10 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index e0a01e3..5bc44da 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ buildscript { google() } dependencies { - classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.21") + classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.10") } } From bfc9f409985d73062fe7a90197d07013195e49be Mon Sep 17 00:00:00 2001 From: DK96-OS <69859316+DK96-OS@users.noreply.github.com> Date: Thu, 14 Aug 2025 16:12:53 +0200 Subject: [PATCH 6/6] Build Updates: * Update settings.gradle - kotlin 2.2.10 --- settings.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.gradle b/settings.gradle index 0ec92a5..e2a25ab 100644 --- a/settings.gradle +++ b/settings.gradle @@ -6,7 +6,7 @@ pluginManagement { plugins { - id "org.jetbrains.kotlin.jvm" version "2.1.21" + id "org.jetbrains.kotlin.jvm" version "2.2.10" id "org.jetbrains.dokka" version "2.0.0" } repositories {