From 64537d9cb19685b04fc720916352a81c3d9747bb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Nov 2025 05:27:10 +0000 Subject: [PATCH] Bump actions/checkout from 5.0.0 to 5.0.1 Bumps [actions/checkout](https://github.com/actions/checkout) from 5.0.0 to 5.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/v5.0.0...v5.0.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 5.0.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 +-- .github/workflows/excavator.yml | 2 +- .github/workflows/issue_comment.yml | 34 +++++++++++------------ .github/workflows/issues.yml | 42 ++++++++++++++--------------- .github/workflows/pull_request.yml | 32 +++++++++++----------- 5 files changed, 57 insertions(+), 57 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c1a35db..727505c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,12 +19,12 @@ jobs: shell: ${{ matrix.shell }} steps: - name: Checkout Bucket - uses: actions/checkout@v5.0.0 + uses: actions/checkout@v5.0.1 with: fetch-depth: 2 path: 'self_bucket' - name: Checkout Scoop - uses: actions/checkout@v5.0.0 + uses: actions/checkout@v5.0.1 with: repository: ScoopInstaller/Scoop path: 'scoop_core' diff --git a/.github/workflows/excavator.yml b/.github/workflows/excavator.yml index 0729b3f..7502513 100644 --- a/.github/workflows/excavator.yml +++ b/.github/workflows/excavator.yml @@ -12,7 +12,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v5.0.0 + - uses: actions/checkout@v5.0.1 - name: Excavate uses: ScoopInstaller/GithubActions@main env: diff --git a/.github/workflows/issue_comment.yml b/.github/workflows/issue_comment.yml index 98f31ea..b75e606 100644 --- a/.github/workflows/issue_comment.yml +++ b/.github/workflows/issue_comment.yml @@ -1,17 +1,17 @@ -on: - issue_comment: - types: - - created - -name: Commented Pull Request -jobs: - pullRequestHandler: - name: PullRequestHandler - runs-on: windows-latest - steps: - - uses: actions/checkout@v5.0.0 - - name: PullRequestHandler - uses: ScoopInstaller/GithubActions@main - if: startsWith(github.event.comment.body, '/verify') - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} +on: + issue_comment: + types: + - created + +name: Commented Pull Request +jobs: + pullRequestHandler: + name: PullRequestHandler + runs-on: windows-latest + steps: + - uses: actions/checkout@v5.0.1 + - name: PullRequestHandler + uses: ScoopInstaller/GithubActions@main + if: startsWith(github.event.comment.body, '/verify') + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml index d1ec0d2..9785954 100644 --- a/.github/workflows/issues.yml +++ b/.github/workflows/issues.yml @@ -1,21 +1,21 @@ -on: - issues: - types: - - opened - - labeled - -name: Issues -jobs: - issueHandler: - name: IssueHandler - runs-on: windows-latest - permissions: - contents: write - issues: write - steps: - - uses: actions/checkout@v5.0.0 - - 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 }} +on: + issues: + types: + - opened + - labeled + +name: Issues +jobs: + issueHandler: + name: IssueHandler + runs-on: windows-latest + permissions: + contents: write + issues: write + steps: + - uses: actions/checkout@v5.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 }} diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 70ae8e0..88d418b 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -1,16 +1,16 @@ -on: - pull_request_target: - types: - - opened - -name: Pull Requests -jobs: - pullRequestHandler: - name: PullRequestHandler - runs-on: windows-latest - steps: - - uses: actions/checkout@v5.0.0 - - name: PullRequestHandler - uses: ScoopInstaller/GithubActions@main - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} +on: + pull_request_target: + types: + - opened + +name: Pull Requests +jobs: + pullRequestHandler: + name: PullRequestHandler + runs-on: windows-latest + steps: + - uses: actions/checkout@v5.0.1 + - name: PullRequestHandler + uses: ScoopInstaller/GithubActions@main + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}