From e806dac7a38be15f1448fcfd3746fa669ebae06e Mon Sep 17 00:00:00 2001 From: Yuriy Ostapenko <2004891+yuriyostapenko@users.noreply.github.com> Date: Tue, 30 Jun 2026 08:40:35 +0200 Subject: [PATCH 1/2] Update action versions in CI/CD workflow Updated GitHub Actions to use specific versions of checkout and setup-java actions. --- .github/workflows/ci-cd.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-cd.yaml b/.github/workflows/ci-cd.yaml index 8ec435a..9ee77ec 100644 --- a/.github/workflows/ci-cd.yaml +++ b/.github/workflows/ci-cd.yaml @@ -18,10 +18,10 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7 - name: Set up Java - uses: actions/setup-java@v4 + uses: actions/setup-java@1bcf9fb12cf4aa7d266a90ae39939e61372fe520 # v5 with: distribution: temurin java-version: 17 From 3ff10cbd23998d891c9de33be3ce12cde092d754 Mon Sep 17 00:00:00 2001 From: Yuriy Ostapenko <2004891+yuriyostapenko@users.noreply.github.com> Date: Tue, 30 Jun 2026 08:42:43 +0200 Subject: [PATCH 2/2] Update test reporter action to version 3 --- .github/workflows/ci-cd.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-cd.yaml b/.github/workflows/ci-cd.yaml index 9ee77ec..c8f34c0 100644 --- a/.github/workflows/ci-cd.yaml +++ b/.github/workflows/ci-cd.yaml @@ -65,7 +65,7 @@ jobs: GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} - name: Publish Test Results - uses: dorny/test-reporter@dc3a92680fcc15842eef52e8c4606ea7ce6bd3f3 # v2.1.1 + uses: dorny/test-reporter@a43b3a5f7366b97d083190328d2c652e1a8b6aa2 # v3 if: success() || failure() with: name: Test Results