From 30b2f10279400196324cb6812daae4ae41e8a001 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 9 Oct 2025 21:34:11 +0000 Subject: [PATCH 1/2] ci(github-action)!: Update actions/checkout action to v5 (renovate) --- .github/workflows/build.yaml | 2 +- .github/workflows/release.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 1272b20..62b2b58 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -25,7 +25,7 @@ jobs: steps: - name: Checkout the code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3043398..4ea0000 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout the code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Retrieve project metadata uses: https://github.com/radcortez/project-metadata-action@main From cc6f7147a5c644662ec84b8cbc126e19bb73a808 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Derehaj=C5=82o?= Date: Fri, 10 Oct 2025 10:52:22 +0200 Subject: [PATCH 2/2] ci: Updated github actions to use full urls --- .github/workflows/build.yaml | 4 ++-- .github/workflows/release.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 62b2b58..4d770c3 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -25,7 +25,7 @@ jobs: steps: - name: Checkout the code - uses: actions/checkout@v5 + uses: https://github.com/actions/checkout@v5 with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis @@ -48,7 +48,7 @@ jobs: - name: Cache Maven Repository id: cache-maven - uses: actions/cache@v4 + uses: https://github.com/actions/cache@v4 with: path: ~/.m2/repository # The cache is per branch but in case we don't find a branch for a given branch, we will get a cache from another branch. diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 4ea0000..a8e9880 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout the code - uses: actions/checkout@v5 + uses: https://github.com/actions/checkout@v5 - name: Retrieve project metadata uses: https://github.com/radcortez/project-metadata-action@main @@ -78,7 +78,7 @@ jobs: - name: Cache Maven Repository id: cache-maven - uses: actions/cache@v4 + uses: https://github.com/actions/cache@v4 with: path: ~/.m2/repository # The cache is per branch but in case we don't find a branch for a given branch, we will get a cache from another branch.