From 2d03945880aea747f9ae7bfa202b489224047020 Mon Sep 17 00:00:00 2001 From: Michael Adams Date: Sun, 4 Feb 2024 13:20:42 -0800 Subject: [PATCH] Upgraded the version of the actions/checkout action being used in GitHub CI workflows. --- .github/workflows/ci.yml | 2 +- .github/workflows/deploy_manual.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/win_ci.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e56dd739..21a001b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: fail-fast: false runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4.1.1 ############################################################ - name: prebuild shell: bash diff --git a/.github/workflows/deploy_manual.yml b/.github/workflows/deploy_manual.yml index 2c7bf852..c8e94498 100644 --- a/.github/workflows/deploy_manual.yml +++ b/.github/workflows/deploy_manual.yml @@ -12,7 +12,7 @@ jobs: steps: ############################################################ - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4.1.1 with: fetch-depth: 0 ############################################################ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 05ece77f..dba2f5a3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: steps: ############################################################ - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4.1.1 with: fetch-depth: 0 ############################################################ diff --git a/.github/workflows/win_ci.yml b/.github/workflows/win_ci.yml index ac8ce7eb..51674eff 100644 --- a/.github/workflows/win_ci.yml +++ b/.github/workflows/win_ci.yml @@ -11,7 +11,7 @@ jobs: fail-fast: false runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4.1.1 - name: testing shell: bash run: build/build --debug-level 10 --shared --test --verbose