From e3753d5d059c276c6056d6b302dd03f162be70a1 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 16 Feb 2023 11:08:33 +0100 Subject: [PATCH] Update actions/checkout action to v3 --- .github/workflows/main.yml | 2 +- .github/workflows/sonarcloud.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 933e505..79c25cd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,7 +9,7 @@ jobs: matrix: os: [ ubuntu-latest, windows-latest, macos-latest ] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Configure run: cmake -DBUILD_TEST=ON . diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml index 0ac20f2..54b02fd 100644 --- a/.github/workflows/sonarcloud.yml +++ b/.github/workflows/sonarcloud.yml @@ -15,7 +15,7 @@ jobs: SONAR_SERVER_URL: "https://sonarcloud.io" BUILD_WRAPPER_OUT_DIR: sonar-out # Directory where build-wrapper output will be placed steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Set up JDK 11