From 50cd95d6e51398a9fb180a8182df3c433c8cde95 Mon Sep 17 00:00:00 2001 From: Valery Yatsynovich Date: Thu, 16 Nov 2023 13:02:32 +0200 Subject: [PATCH] JBEHAVE-1593 Bump GitHub checkout action from `3` to `4` Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [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/v3...v4) --- .github/workflows/build.yml | 2 +- .github/workflows/ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f31fa7867..45658a753 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: name: Build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - name: Set up JDK 17 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6661e891f..13afb3010 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install JDK ${{ matrix.java }} uses: actions/setup-java@v3