Compare commits

...

2 Commits

Author SHA1 Message Date
cc1ec176a8 chore(deps): update plugin org.sonarqube to v5.1.0.4882
All checks were successful
Quality Check / Tests (pull_request) Successful in 47s
Quality Check / Checkstyle Main (pull_request) Successful in 35s
2024-09-26 06:01:53 +00:00
921f585598 chore(deps): update actions/cache action to v4 (!19)
All checks were successful
Quality Check / Tests (push) Successful in 1m4s
Quality Check / Checkstyle Main (push) Successful in 51s
Release / Release (push) Successful in 44s
Build / Build and analyze (push) Successful in 3m30s
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [actions/cache](https://github.com/actions/cache) | action | major | `v1` -> `v4` |

---

### Release Notes

<details>
<summary>actions/cache (actions/cache)</summary>

### [`v4`](https://github.com/actions/cache/compare/v3...v4)

[Compare Source](https://github.com/actions/cache/compare/v3...v4)

### [`v3`](https://github.com/actions/cache/compare/v2...v3)

[Compare Source](https://github.com/actions/cache/compare/v2...v3)

### [`v2`](https://github.com/actions/cache/compare/v1...v2)

[Compare Source](https://github.com/actions/cache/compare/v1...v2)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45NS4wIiwidXBkYXRlZEluVmVyIjoiMzguOTUuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Reviewed-on: #19
Reviewed-by: Jan Gleytenhoover <krisellp9@gmail.com>
Co-authored-by: Renovate <renovate@kjan.de>
Co-committed-by: Renovate <renovate@kjan.de>
2024-09-26 05:25:14 +00:00
2 changed files with 3 additions and 3 deletions

@ -19,13 +19,13 @@ jobs:
with: with:
java-version: 21 java-version: 21
- name: Cache SonarQube packages - name: Cache SonarQube packages
uses: actions/cache@v1 uses: actions/cache@v4
with: with:
path: ~/.sonar/cache path: ~/.sonar/cache
key: ${{ runner.os }}-sonar key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar restore-keys: ${{ runner.os }}-sonar
- name: Cache Gradle packages - name: Cache Gradle packages
uses: actions/cache@v1 uses: actions/cache@v4
with: with:
path: ~/.gradle/caches path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}

@ -3,7 +3,7 @@ plugins {
id("org.springframework.boot") version "3.3.4" id("org.springframework.boot") version "3.3.4"
id("io.spring.dependency-management") version "1.1.6" id("io.spring.dependency-management") version "1.1.6"
id("checkstyle") id("checkstyle")
id("org.sonarqube") version "5.0.0.4638" id("org.sonarqube") version "5.1.0.4882"
id("jacoco") id("jacoco")
} }