From ddc974591e523bd4382e3024d77a6c8f6868c198 Mon Sep 17 00:00:00 2001 From: Aster Seker Date: Thu, 6 Aug 2026 10:04:26 +0300 Subject: [PATCH] ci: update checkout action --- .github/workflows/CI-Linux.yml | 4 ++-- .github/workflows/CI-Win.yml | 2 +- .github/workflows/CI-macOS.yml | 4 ++-- .github/workflows/benchmarks.yml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/CI-Linux.yml b/.github/workflows/CI-Linux.yml index 8695e29..7b82c5d 100644 --- a/.github/workflows/CI-Linux.yml +++ b/.github/workflows/CI-Linux.yml @@ -20,7 +20,7 @@ jobs: std: [11, 17] mlock: [ON, OFF] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v7 - name: Install dependencies run: sudo apt-get update && sudo apt-get install -y cmake - name: Configure @@ -35,7 +35,7 @@ jobs: matrix: mlock: [ON, OFF] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v7 - name: Install vcpkg run: | git clone https://github.com/microsoft/vcpkg.git diff --git a/.github/workflows/CI-Win.yml b/.github/workflows/CI-Win.yml index 0b54725..33ab868 100644 --- a/.github/workflows/CI-Win.yml +++ b/.github/workflows/CI-Win.yml @@ -20,7 +20,7 @@ jobs: std: [11, 17] mlock: [ON, OFF] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v7 - uses: msys2/setup-msys2@v2 with: update: true diff --git a/.github/workflows/CI-macOS.yml b/.github/workflows/CI-macOS.yml index 62ad687..8c566c8 100644 --- a/.github/workflows/CI-macOS.yml +++ b/.github/workflows/CI-macOS.yml @@ -20,7 +20,7 @@ jobs: std: [11, 17] mlock: [ON, OFF] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v7 - name: Install dependencies run: | brew update @@ -39,7 +39,7 @@ jobs: matrix: mlock: [ON, OFF] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v7 - name: Install vcpkg run: | git clone https://github.com/microsoft/vcpkg.git diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index 6b79b43..5005114 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -9,7 +9,7 @@ jobs: benchmark: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v7 - name: Install dependencies run: sudo apt-get update && sudo apt-get install -y cmake hyperfine - name: Run benchmarks