diff --git a/.github/workflows/auto-merge-dependabot.yml b/.github/workflows/auto-merge-dependabot.yml index 2a4c4cc..7529d18 100644 --- a/.github/workflows/auto-merge-dependabot.yml +++ b/.github/workflows/auto-merge-dependabot.yml @@ -15,12 +15,12 @@ jobs: statuses: write steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Auto-approve and merge Dependabot PRs - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const { data: pr } = await github.rest.pulls.get({ diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml index ba210c1..575f30f 100644 --- a/.github/workflows/auto-merge.yml +++ b/.github/workflows/auto-merge.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Auto-merge PR - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const { data: pr } = await github.rest.pulls.get({ diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94cf2d6..566f95f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Checkout repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install dependencies run: | @@ -53,7 +53,7 @@ jobs: - name: Upload CMake logs (on failure) if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: cmake-logs path: | diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index e0cc698..5b1af40 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install dependencies (no OCCT for CodeQL) run: | diff --git a/.github/workflows/pr-guard.yml b/.github/workflows/pr-guard.yml index daf1e42..a615069 100644 --- a/.github/workflows/pr-guard.yml +++ b/.github/workflows/pr-guard.yml @@ -10,7 +10,7 @@ jobs: contents: read pull-requests: read steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: Detect changed files