diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index a962c59..8f52298 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v7 # --- Python Syntax Check --- - name: Set up Python diff --git a/.github/workflows/ci-approval.yml b/.github/workflows/ci-approval.yml index d4ce364..55ce751 100644 --- a/.github/workflows/ci-approval.yml +++ b/.github/workflows/ci-approval.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Send Email Notification uses: dawidd6/action-send-mail@v3 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 570e77d..81fe78a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 @@ -84,7 +84,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 @@ -178,7 +178,7 @@ jobs: shell: bash steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 @@ -302,7 +302,7 @@ jobs: fail-fast: false steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index c64ce3f..9cf6c96 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -35,7 +35,7 @@ jobs: contents: read packages: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: docker/setup-buildx-action@v3 diff --git a/.github/workflows/jekyll-gh-pages.yml b/.github/workflows/jekyll-gh-pages.yml index ca47c38..e403075 100644 --- a/.github/workflows/jekyll-gh-pages.yml +++ b/.github/workflows/jekyll-gh-pages.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Setup Pages uses: actions/configure-pages@v5 - name: Build with Jekyll diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2a2d6c8..a633c4b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout Code with Full History - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 2 diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index b318fbe..95d283b 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -50,7 +50,7 @@ jobs: runs-on: ubuntu-latest needs: check-trigger steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 ref: refs/pull/${{ needs.check-trigger.outputs.pr_number }}/head @@ -81,7 +81,7 @@ jobs: runs-on: ubuntu-latest needs: check-trigger steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 ref: refs/pull/${{ needs.check-trigger.outputs.pr_number }}/head @@ -112,7 +112,7 @@ jobs: runs-on: ubuntu-latest needs: check-trigger steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 ref: refs/pull/${{ needs.check-trigger.outputs.pr_number }}/head diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6ee793a..b735433 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,7 +38,7 @@ jobs: runs-on: macos-14 steps: - name: Clone - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -81,7 +81,7 @@ jobs: runs-on: macos-14 steps: - name: Clone - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -138,7 +138,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Clone - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -188,7 +188,7 @@ jobs: runs-on: ubuntu-24.04-arm steps: - name: Clone - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -246,7 +246,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Clone - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -296,7 +296,7 @@ jobs: runs-on: ubuntu-24.04-arm steps: - name: Clone - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -348,7 +348,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Clone - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -404,7 +404,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Clone - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -459,7 +459,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Clone - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -516,7 +516,7 @@ jobs: runs-on: windows-2022 steps: - name: Clone - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -556,7 +556,7 @@ jobs: runs-on: windows-2022 steps: - name: Clone - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -589,7 +589,7 @@ jobs: runs-on: windows-2022 steps: - name: Clone - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b5652dc..90e6fa6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Install clang-format run: | @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v4