From dbbfd2d6cef537e7ad5ceae0a1ecc229423d5c41 Mon Sep 17 00:00:00 2001 From: Konstantin Diachenko Date: Sat, 2 Nov 2024 03:02:25 +0530 Subject: [PATCH] Update actions/checkout to v4 --- .github/workflows/AutoMerge.yml | 2 +- .github/workflows/CD.yml | 4 ++-- .github/workflows/cpp.yml | 6 +++--- .github/workflows/csharp.yml | 14 +++++++------- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/AutoMerge.yml b/.github/workflows/AutoMerge.yml index d44acb0..5599af1 100644 --- a/.github/workflows/AutoMerge.yml +++ b/.github/workflows/AutoMerge.yml @@ -7,7 +7,7 @@ jobs: auto-merge: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: ahmadnassri/action-dependabot-auto-merge@v2 with: target: minor diff --git a/.github/workflows/CD.yml b/.github/workflows/CD.yml index 4d63dd9..89a51cf 100644 --- a/.github/workflows/CD.yml +++ b/.github/workflows/CD.yml @@ -15,7 +15,7 @@ jobs: testAndDeploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 with: submodules: true - name: Test @@ -61,7 +61,7 @@ jobs: if: github.event_name == 'push' runs-on: windows-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 with: submodules: true - uses: nuget/setup-nuget@v1 diff --git a/.github/workflows/cpp.yml b/.github/workflows/cpp.yml index f9ddc21..88ce1d3 100644 --- a/.github/workflows/cpp.yml +++ b/.github/workflows/cpp.yml @@ -20,7 +20,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 with: submodules: true - name: Setup clang @@ -59,7 +59,7 @@ jobs: runs-on: ubuntu-latest needs: test steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 with: submodules: true - name: Read package information @@ -76,7 +76,7 @@ jobs: runs-on: ubuntu-latest needs: test steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 with: submodules: true - name: Read project information diff --git a/.github/workflows/csharp.yml b/.github/workflows/csharp.yml index 75e5324..10a72a5 100644 --- a/.github/workflows/csharp.yml +++ b/.github/workflows/csharp.yml @@ -20,7 +20,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 with: submodules: true - name: Test @@ -31,7 +31,7 @@ jobs: needs: test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 with: submodules: true - uses: nuget/setup-nuget@v1 @@ -46,7 +46,7 @@ jobs: runs-on: ubuntu-latest needs: test steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 with: submodules: true - name: Read project information @@ -64,7 +64,7 @@ jobs: runs-on: ubuntu-latest needs: test steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 with: submodules: true - name: Read project information @@ -87,7 +87,7 @@ jobs: outputs: isCsFilesChanged: ${{ steps.setIsCsFilesChangedOutput.outputs.isCsFilesChanged }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Get changed files using defaults @@ -111,7 +111,7 @@ jobs: needs: [findChangedCsFiles] if: ${{ needs.findChangedCsFiles.outputs.isCsFilesChanged == 'true' }} steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 with: submodules: true - name: Generate PDF with code @@ -127,7 +127,7 @@ jobs: needs: [findChangedCsFiles] if: ${{ needs.findChangedCsFiles.outputs.isCsFilesChanged == 'true' }} steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 with: submodules: true - name: Publish documentation to gh-pages branch