From 13f53690337aa2d57a47dfbdfc16f9e0dd5cde38 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 9 Aug 2026 06:20:39 +0000 Subject: [PATCH 1/2] (chore): Bump actions/checkout from 6.0.2 to 7.0.1 Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.2 to 7.0.1. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/de0fac2e4500dabe0009e67214ff5f5447ce83dd...3d3c42e5aac5ba805825da76410c181273ba90b1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 82 ++++++++++++++--------------- .github/workflows/excavator.yml | 48 ++++++++--------- .github/workflows/issue_comment.yml | 46 ++++++++-------- .github/workflows/issues.yml | 48 ++++++++--------- .github/workflows/pull_request.yml | 44 ++++++++-------- 5 files changed, 134 insertions(+), 134 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e7cd0d1980670..511ef2b9fe828 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,41 +1,41 @@ -name: CI - -on: - pull_request: - push: - workflow_dispatch: - -permissions: - contents: read - -jobs: - test: - name: Test - runs-on: windows-latest - strategy: - matrix: - shell: [powershell, pwsh] - defaults: - run: - shell: ${{ matrix.shell }} - steps: - - name: Checkout Bucket - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - with: - # Need at least 2 commits to properly gather changed files for linting - fetch-depth: 2 - path: 'my_bucket' - - name: Checkout Scoop - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - with: - repository: ScoopInstaller/Scoop - path: 'scoop_core' - - name: Install and cache test dependencies - uses: potatoqualitee/psmodulecache@ee5e9494714abf56f6efbfa51527b2aec5c761b8 # v6.2.1 - with: - modules-to-cache: BuildHelpers, Pester - shell: ${{ matrix.shell }} - - name: Run tests - run: | - $env:SCOOP_HOME="$(Convert-Path '.\scoop_core')" - .\my_bucket\bin\test.ps1 +name: CI + +on: + pull_request: + push: + workflow_dispatch: + +permissions: + contents: read + +jobs: + test: + name: Test + runs-on: windows-latest + strategy: + matrix: + shell: [powershell, pwsh] + defaults: + run: + shell: ${{ matrix.shell }} + steps: + - name: Checkout Bucket + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + with: + # Need at least 2 commits to properly gather changed files for linting + fetch-depth: 2 + path: 'my_bucket' + - name: Checkout Scoop + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + with: + repository: ScoopInstaller/Scoop + path: 'scoop_core' + - name: Install and cache test dependencies + uses: potatoqualitee/psmodulecache@ee5e9494714abf56f6efbfa51527b2aec5c761b8 # v6.2.1 + with: + modules-to-cache: BuildHelpers, Pester + shell: ${{ matrix.shell }} + - name: Run tests + run: | + $env:SCOOP_HOME="$(Convert-Path '.\scoop_core')" + .\my_bucket\bin\test.ps1 diff --git a/.github/workflows/excavator.yml b/.github/workflows/excavator.yml index 2096384eb8d8c..63cfbe668854d 100644 --- a/.github/workflows/excavator.yml +++ b/.github/workflows/excavator.yml @@ -1,24 +1,24 @@ -name: Excavator - -on: - workflow_dispatch: - schedule: - # run every 4 hours - - cron: '20 */4 * * *' - -permissions: - contents: write - -jobs: - excavate: - name: Excavate - runs-on: windows-latest - steps: - - name: Checkout - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - name: Excavate - uses: ScoopInstaller/GithubActions@main - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - SKIP_UPDATED: '1' - SCOOP_BRANCH: develop +name: Excavator + +on: + workflow_dispatch: + schedule: + # run every 4 hours + - cron: '20 */4 * * *' + +permissions: + contents: write + +jobs: + excavate: + name: Excavate + runs-on: windows-latest + steps: + - name: Checkout + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - name: Excavate + uses: ScoopInstaller/GithubActions@main + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + SKIP_UPDATED: '1' + SCOOP_BRANCH: develop diff --git a/.github/workflows/issue_comment.yml b/.github/workflows/issue_comment.yml index c3dc4b362bc30..99109e60a53bf 100644 --- a/.github/workflows/issue_comment.yml +++ b/.github/workflows/issue_comment.yml @@ -1,23 +1,23 @@ -name: Commented Pull Request - -on: - issue_comment: - types: [ created ] - -permissions: - contents: read - pull-requests: write - -jobs: - pullRequestHandler: - name: PullRequestHandler - runs-on: windows-latest - steps: - - name: Checkout - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - name: PullRequestHandler - uses: ScoopInstaller/GithubActions@main - if: startsWith(github.event.comment.body, '/verify') - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - SCOOP_BRANCH: develop +name: Commented Pull Request + +on: + issue_comment: + types: [ created ] + +permissions: + contents: read + pull-requests: write + +jobs: + pullRequestHandler: + name: PullRequestHandler + runs-on: windows-latest + steps: + - name: Checkout + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - name: PullRequestHandler + uses: ScoopInstaller/GithubActions@main + if: startsWith(github.event.comment.body, '/verify') + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + SCOOP_BRANCH: develop diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml index 63ff45a39ff7f..cecce5d6eb479 100644 --- a/.github/workflows/issues.yml +++ b/.github/workflows/issues.yml @@ -1,24 +1,24 @@ -name: Issues - -on: - issues: - types: [ opened, labeled ] - -permissions: - # Auto hash fixing commits - contents: write - issues: write - -jobs: - issueHandler: - name: IssueHandler - runs-on: windows-latest - steps: - - name: Checkout - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - name: IssueHandler - uses: ScoopInstaller/GithubActions@main - if: github.event.action == 'opened' || (github.event.action == 'labeled' && contains(github.event.issue.labels.*.name, 'verify')) - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - SCOOP_BRANCH: develop +name: Issues + +on: + issues: + types: [ opened, labeled ] + +permissions: + # Auto hash fixing commits + contents: write + issues: write + +jobs: + issueHandler: + name: IssueHandler + runs-on: windows-latest + steps: + - name: Checkout + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - name: IssueHandler + uses: ScoopInstaller/GithubActions@main + if: github.event.action == 'opened' || (github.event.action == 'labeled' && contains(github.event.issue.labels.*.name, 'verify')) + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + SCOOP_BRANCH: develop diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index f8ad8b73285bc..2c5522215b65e 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -1,22 +1,22 @@ -name: Pull Requests - -on: - pull_request: - types: [ opened ] - -permissions: - contents: read - pull-requests: write - -jobs: - pullRequestHandler: - name: PullRequestHandler - runs-on: windows-latest - steps: - - name: Checkout - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - name: PullRequestHandler - uses: ScoopInstaller/GithubActions@main - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - SCOOP_BRANCH: develop +name: Pull Requests + +on: + pull_request: + types: [ opened ] + +permissions: + contents: read + pull-requests: write + +jobs: + pullRequestHandler: + name: PullRequestHandler + runs-on: windows-latest + steps: + - name: Checkout + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - name: PullRequestHandler + uses: ScoopInstaller/GithubActions@main + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + SCOOP_BRANCH: develop From 431ea3b1211af8ea6752a3a66aec1f58c45b2bbd Mon Sep 17 00:00:00 2001 From: z-Fng <54583083+z-Fng@users.noreply.github.com> Date: Sun, 9 Aug 2026 06:23:17 +0000 Subject: [PATCH 2/2] (chore): Reformat and normalize GitHub Actions workflow files --- .github/workflows/ci.yml | 78 ++++++++++++++--------------- .github/workflows/excavator.yml | 46 ++++++++--------- .github/workflows/issue_comment.yml | 44 ++++++++-------- .github/workflows/issues.yml | 46 ++++++++--------- .github/workflows/pull_request.yml | 42 ++++++++-------- 5 files changed, 128 insertions(+), 128 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 511ef2b9fe828..6e9271b2c0359 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,41 +1,41 @@ -name: CI - -on: - pull_request: - push: - workflow_dispatch: - -permissions: - contents: read - -jobs: - test: - name: Test - runs-on: windows-latest - strategy: - matrix: - shell: [powershell, pwsh] - defaults: - run: - shell: ${{ matrix.shell }} - steps: - - name: Checkout Bucket +name: CI + +on: + pull_request: + push: + workflow_dispatch: + +permissions: + contents: read + +jobs: + test: + name: Test + runs-on: windows-latest + strategy: + matrix: + shell: [powershell, pwsh] + defaults: + run: + shell: ${{ matrix.shell }} + steps: + - name: Checkout Bucket uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - with: - # Need at least 2 commits to properly gather changed files for linting - fetch-depth: 2 - path: 'my_bucket' - - name: Checkout Scoop + with: + # Need at least 2 commits to properly gather changed files for linting + fetch-depth: 2 + path: 'my_bucket' + - name: Checkout Scoop uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - with: - repository: ScoopInstaller/Scoop - path: 'scoop_core' - - name: Install and cache test dependencies - uses: potatoqualitee/psmodulecache@ee5e9494714abf56f6efbfa51527b2aec5c761b8 # v6.2.1 - with: - modules-to-cache: BuildHelpers, Pester - shell: ${{ matrix.shell }} - - name: Run tests - run: | - $env:SCOOP_HOME="$(Convert-Path '.\scoop_core')" - .\my_bucket\bin\test.ps1 + with: + repository: ScoopInstaller/Scoop + path: 'scoop_core' + - name: Install and cache test dependencies + uses: potatoqualitee/psmodulecache@ee5e9494714abf56f6efbfa51527b2aec5c761b8 # v6.2.1 + with: + modules-to-cache: BuildHelpers, Pester + shell: ${{ matrix.shell }} + - name: Run tests + run: | + $env:SCOOP_HOME="$(Convert-Path '.\scoop_core')" + .\my_bucket\bin\test.ps1 diff --git a/.github/workflows/excavator.yml b/.github/workflows/excavator.yml index 63cfbe668854d..d81a08634ab8d 100644 --- a/.github/workflows/excavator.yml +++ b/.github/workflows/excavator.yml @@ -1,24 +1,24 @@ -name: Excavator - -on: - workflow_dispatch: - schedule: - # run every 4 hours - - cron: '20 */4 * * *' - -permissions: - contents: write - -jobs: - excavate: - name: Excavate - runs-on: windows-latest - steps: - - name: Checkout +name: Excavator + +on: + workflow_dispatch: + schedule: + # run every 4 hours + - cron: '20 */4 * * *' + +permissions: + contents: write + +jobs: + excavate: + name: Excavate + runs-on: windows-latest + steps: + - name: Checkout uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - - name: Excavate - uses: ScoopInstaller/GithubActions@main - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - SKIP_UPDATED: '1' - SCOOP_BRANCH: develop + - name: Excavate + uses: ScoopInstaller/GithubActions@main + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + SKIP_UPDATED: '1' + SCOOP_BRANCH: develop diff --git a/.github/workflows/issue_comment.yml b/.github/workflows/issue_comment.yml index 99109e60a53bf..3ffcab9cce5c3 100644 --- a/.github/workflows/issue_comment.yml +++ b/.github/workflows/issue_comment.yml @@ -1,23 +1,23 @@ -name: Commented Pull Request - -on: - issue_comment: - types: [ created ] - -permissions: - contents: read - pull-requests: write - -jobs: - pullRequestHandler: - name: PullRequestHandler - runs-on: windows-latest - steps: - - name: Checkout +name: Commented Pull Request + +on: + issue_comment: + types: [ created ] + +permissions: + contents: read + pull-requests: write + +jobs: + pullRequestHandler: + name: PullRequestHandler + runs-on: windows-latest + steps: + - name: Checkout uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - - name: PullRequestHandler - uses: ScoopInstaller/GithubActions@main - if: startsWith(github.event.comment.body, '/verify') - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - SCOOP_BRANCH: develop + - name: PullRequestHandler + uses: ScoopInstaller/GithubActions@main + if: startsWith(github.event.comment.body, '/verify') + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + SCOOP_BRANCH: develop diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml index cecce5d6eb479..ca2b6d2858115 100644 --- a/.github/workflows/issues.yml +++ b/.github/workflows/issues.yml @@ -1,24 +1,24 @@ -name: Issues - -on: - issues: - types: [ opened, labeled ] - -permissions: - # Auto hash fixing commits - contents: write - issues: write - -jobs: - issueHandler: - name: IssueHandler - runs-on: windows-latest - steps: - - name: Checkout +name: Issues + +on: + issues: + types: [ opened, labeled ] + +permissions: + # Auto hash fixing commits + contents: write + issues: write + +jobs: + issueHandler: + name: IssueHandler + runs-on: windows-latest + steps: + - name: Checkout uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - - name: IssueHandler - uses: ScoopInstaller/GithubActions@main - if: github.event.action == 'opened' || (github.event.action == 'labeled' && contains(github.event.issue.labels.*.name, 'verify')) - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - SCOOP_BRANCH: develop + - name: IssueHandler + uses: ScoopInstaller/GithubActions@main + if: github.event.action == 'opened' || (github.event.action == 'labeled' && contains(github.event.issue.labels.*.name, 'verify')) + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + SCOOP_BRANCH: develop diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 2c5522215b65e..62446e0b823cc 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -1,22 +1,22 @@ -name: Pull Requests - -on: - pull_request: - types: [ opened ] - -permissions: - contents: read - pull-requests: write - -jobs: - pullRequestHandler: - name: PullRequestHandler - runs-on: windows-latest - steps: - - name: Checkout +name: Pull Requests + +on: + pull_request: + types: [ opened ] + +permissions: + contents: read + pull-requests: write + +jobs: + pullRequestHandler: + name: PullRequestHandler + runs-on: windows-latest + steps: + - name: Checkout uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - - name: PullRequestHandler - uses: ScoopInstaller/GithubActions@main - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - SCOOP_BRANCH: develop + - name: PullRequestHandler + uses: ScoopInstaller/GithubActions@main + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + SCOOP_BRANCH: develop