From 312050e0656a58d011ecb30a81993d1298fb709b Mon Sep 17 00:00:00 2001 From: irotech Date: Mon, 11 Mar 2024 17:37:00 +0000 Subject: [PATCH 1/2] =?UTF-8?q?Bump=20Git=20actions/checkout=20version=20(?= =?UTF-8?q?2=20=E2=86=92=204)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/junit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/junit.yml b/.github/workflows/junit.yml index 4d8055bb..ba081dca 100644 --- a/.github/workflows/junit.yml +++ b/.github/workflows/junit.yml @@ -18,7 +18,7 @@ jobs: jdk-version: [8,11,17] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Java ${{ matrix.jdk-version }} uses: actions/setup-java@v1 with: From 5cd40543848792f796ed26d11a896d8d53c51010 Mon Sep 17 00:00:00 2001 From: irotech Date: Mon, 11 Mar 2024 17:37:05 +0000 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20Git=20actions/setup-java=20version?= =?UTF-8?q?=20(1=20=E2=86=92=204)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/junit.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/junit.yml b/.github/workflows/junit.yml index ba081dca..32bf8fd4 100644 --- a/.github/workflows/junit.yml +++ b/.github/workflows/junit.yml @@ -20,8 +20,9 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Java ${{ matrix.jdk-version }} - uses: actions/setup-java@v1 + uses: actions/setup-java@v4 with: + distribution: 'zulu' java-version: ${{ matrix.jdk-version }} architecture: x64 - run: mvn test -B -pl yoti-sdk-api -Ddependency-check.skip=true