From f1a0a2c4533ae99d63b7cdd1885c8e4a9821a148 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 15:13:05 +0000 Subject: [PATCH] Bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [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...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/report-fork.yml | 2 +- .github/workflows/report-main.yml | 6 +++--- .github/workflows/report-pr-by-issue.yml | 2 +- .github/workflows/report-pr.yml | 2 +- .github/workflows/upkeep-cleanup-old-results.yml | 2 +- .github/workflows/upkeep-update-cache.yml | 4 ++-- .github/workflows/workflow-mobile.yml | 12 ++++++------ .github/workflows/workflow-native.yml | 6 +++--- .github/workflows/workflow-rebuild-website.yml | 4 ++-- .github/workflows/workflow-wasm.yml | 2 +- 10 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/report-fork.yml b/.github/workflows/report-fork.yml index 4316bde10..301e1c81b 100644 --- a/.github/workflows/report-fork.yml +++ b/.github/workflows/report-fork.yml @@ -27,7 +27,7 @@ jobs: pixeleagle_project: ${{ steps.env.outputs.pixeleagle_project }} steps: - name: Checkout Bevy main branch - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: ${{ inputs.fork }} ref: ${{ inputs.branch }} diff --git a/.github/workflows/report-main.yml b/.github/workflows/report-main.yml index 9c8fe57d3..0c1a3cfb0 100644 --- a/.github/workflows/report-main.yml +++ b/.github/workflows/report-main.yml @@ -17,7 +17,7 @@ jobs: updated: ${{ steps.version-check.outputs.updated }} steps: - name: Checkout Bevy main branch - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: "bevyengine/bevy" ref: "main" @@ -28,7 +28,7 @@ jobs: echo "date=`date +%Y%m%d%H%M`" >> $GITHUB_OUTPUT echo "pixeleagle_project=B25A040A-A980-4602-B90C-D480AB84076D" >> $GITHUB_OUTPUT echo "mobile_percy_project=dede4209/Bevy-Mobile-Example" >> $GITHUB_OUTPUT - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: ref: "results" path: "results" @@ -84,7 +84,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: ref: "results" path: "results" diff --git a/.github/workflows/report-pr-by-issue.yml b/.github/workflows/report-pr-by-issue.yml index 34a7a6cf6..4cd4f7e18 100644 --- a/.github/workflows/report-pr-by-issue.yml +++ b/.github/workflows/report-pr-by-issue.yml @@ -58,7 +58,7 @@ jobs: pixeleagle_project: ${{ steps.env.outputs.pixeleagle_project }} steps: - name: Checkout Bevy main branch - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: "bevyengine/bevy" - name: Switch to PR diff --git a/.github/workflows/report-pr.yml b/.github/workflows/report-pr.yml index 423461ebf..4ed67b023 100644 --- a/.github/workflows/report-pr.yml +++ b/.github/workflows/report-pr.yml @@ -23,7 +23,7 @@ jobs: pixeleagle_project: ${{ steps.env.outputs.pixeleagle_project }} steps: - name: Checkout Bevy main branch - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: 'bevyengine/bevy' - name: Switch to PR diff --git a/.github/workflows/upkeep-cleanup-old-results.yml b/.github/workflows/upkeep-cleanup-old-results.yml index d08a0982b..67af60d1b 100644 --- a/.github/workflows/upkeep-cleanup-old-results.yml +++ b/.github/workflows/upkeep-cleanup-old-results.yml @@ -14,7 +14,7 @@ jobs: steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: ref: "results" fetch-depth: 0 diff --git a/.github/workflows/upkeep-update-cache.yml b/.github/workflows/upkeep-update-cache.yml index d6122fe74..94828e394 100644 --- a/.github/workflows/upkeep-update-cache.yml +++ b/.github/workflows/upkeep-update-cache.yml @@ -15,12 +15,12 @@ jobs: steps: - name: Checkout Bevy main branch - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: "bevyengine/bevy" - name: Checkout patches - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: "runner-patches" diff --git a/.github/workflows/workflow-mobile.yml b/.github/workflows/workflow-mobile.yml index 313eaa5b8..486b1416f 100644 --- a/.github/workflows/workflow-mobile.yml +++ b/.github/workflows/workflow-mobile.yml @@ -62,13 +62,13 @@ jobs: runs-on: macos-latest timeout-minutes: 30 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: repository: ${{ inputs.repository }} ref: ${{ inputs.gitref }} - name: Checkout patches - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: "runner-patches" @@ -112,13 +112,13 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 30 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: repository: ${{ inputs.repository }} ref: ${{ inputs.gitref }} - name: Checkout patches - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: "runner-patches" @@ -225,13 +225,13 @@ jobs: os_version: "14.0" adapter: "Adreno (TM) 740" steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: repository: ${{ inputs.repository }} ref: ${{ inputs.gitref }} - name: Checkout patches - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: "runner-patches" diff --git a/.github/workflows/workflow-native.yml b/.github/workflows/workflow-native.yml index 8f5fb54f6..b29b248b8 100644 --- a/.github/workflows/workflow-native.yml +++ b/.github/workflows/workflow-native.yml @@ -65,7 +65,7 @@ jobs: pages: ${{ steps.env.outputs.pages }} steps: - name: Checkout Bevy - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: ${{ inputs.repository}} ref: ${{ inputs.gitref }} @@ -89,13 +89,13 @@ jobs: steps: - name: Checkout Bevy - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: ${{ inputs.repository }} ref: ${{ inputs.gitref }} - name: Checkout patches - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: "runner-patches" diff --git a/.github/workflows/workflow-rebuild-website.yml b/.github/workflows/workflow-rebuild-website.yml index f95181ba7..a8d82c074 100644 --- a/.github/workflows/workflow-rebuild-website.yml +++ b/.github/workflows/workflow-rebuild-website.yml @@ -16,8 +16,8 @@ jobs: name: github-pages url: ${{ steps.deployment.outputs.page_url }} steps: - - uses: actions/checkout@v5 - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 + - uses: actions/checkout@v6 with: ref: "results" path: "results" diff --git a/.github/workflows/workflow-wasm.yml b/.github/workflows/workflow-wasm.yml index 6803429a1..5ea444bf5 100644 --- a/.github/workflows/workflow-wasm.yml +++ b/.github/workflows/workflow-wasm.yml @@ -73,7 +73,7 @@ jobs: # browser: "chromium" # api: "webgpu" steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: repository: ${{ inputs.repository }} ref: ${{ inputs.gitref }}