Skip to content

Commit fa1f361

Browse files
Bump actions/checkout from 5 to 6 (#182)
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](actions/checkout@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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent acea567 commit fa1f361

10 files changed

+21
-21
lines changed

.github/workflows/report-fork.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
pixeleagle_project: ${{ steps.env.outputs.pixeleagle_project }}
2828
steps:
2929
- name: Checkout Bevy main branch
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131
with:
3232
repository: ${{ inputs.fork }}
3333
ref: ${{ inputs.branch }}

.github/workflows/report-main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
updated: ${{ steps.version-check.outputs.updated }}
1818
steps:
1919
- name: Checkout Bevy main branch
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
with:
2222
repository: "bevyengine/bevy"
2323
ref: "main"
@@ -28,7 +28,7 @@ jobs:
2828
echo "date=`date +%Y%m%d%H%M`" >> $GITHUB_OUTPUT
2929
echo "pixeleagle_project=B25A040A-A980-4602-B90C-D480AB84076D" >> $GITHUB_OUTPUT
3030
echo "mobile_percy_project=dede4209/Bevy-Mobile-Example" >> $GITHUB_OUTPUT
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232
with:
3333
ref: "results"
3434
path: "results"
@@ -84,7 +84,7 @@ jobs:
8484
permissions:
8585
contents: write
8686
steps:
87-
- uses: actions/checkout@v5
87+
- uses: actions/checkout@v6
8888
with:
8989
ref: "results"
9090
path: "results"

.github/workflows/report-pr-by-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
pixeleagle_project: ${{ steps.env.outputs.pixeleagle_project }}
5959
steps:
6060
- name: Checkout Bevy main branch
61-
uses: actions/checkout@v5
61+
uses: actions/checkout@v6
6262
with:
6363
repository: "bevyengine/bevy"
6464
- name: Switch to PR

.github/workflows/report-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
pixeleagle_project: ${{ steps.env.outputs.pixeleagle_project }}
2424
steps:
2525
- name: Checkout Bevy main branch
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
with:
2828
repository: 'bevyengine/bevy'
2929
- name: Switch to PR

.github/workflows/upkeep-cleanup-old-results.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616

17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
with:
1919
ref: "results"
2020
fetch-depth: 0

.github/workflows/upkeep-update-cache.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515

1616
steps:
1717
- name: Checkout Bevy main branch
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919
with:
2020
repository: "bevyengine/bevy"
2121

2222
- name: Checkout patches
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
with:
2525
path: "runner-patches"
2626

.github/workflows/workflow-mobile.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ jobs:
6262
runs-on: macos-latest
6363
timeout-minutes: 30
6464
steps:
65-
- uses: actions/checkout@v5
65+
- uses: actions/checkout@v6
6666
with:
6767
repository: ${{ inputs.repository }}
6868
ref: ${{ inputs.gitref }}
6969

7070
- name: Checkout patches
71-
uses: actions/checkout@v5
71+
uses: actions/checkout@v6
7272
with:
7373
path: "runner-patches"
7474

@@ -112,13 +112,13 @@ jobs:
112112
runs-on: ubuntu-latest
113113
timeout-minutes: 30
114114
steps:
115-
- uses: actions/checkout@v5
115+
- uses: actions/checkout@v6
116116
with:
117117
repository: ${{ inputs.repository }}
118118
ref: ${{ inputs.gitref }}
119119

120120
- name: Checkout patches
121-
uses: actions/checkout@v5
121+
uses: actions/checkout@v6
122122
with:
123123
path: "runner-patches"
124124

@@ -225,13 +225,13 @@ jobs:
225225
os_version: "14.0"
226226
adapter: "Adreno (TM) 740"
227227
steps:
228-
- uses: actions/checkout@v5
228+
- uses: actions/checkout@v6
229229
with:
230230
repository: ${{ inputs.repository }}
231231
ref: ${{ inputs.gitref }}
232232

233233
- name: Checkout patches
234-
uses: actions/checkout@v5
234+
uses: actions/checkout@v6
235235
with:
236236
path: "runner-patches"
237237

.github/workflows/workflow-native.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
pages: ${{ steps.env.outputs.pages }}
6666
steps:
6767
- name: Checkout Bevy
68-
uses: actions/checkout@v5
68+
uses: actions/checkout@v6
6969
with:
7070
repository: ${{ inputs.repository}}
7171
ref: ${{ inputs.gitref }}
@@ -89,13 +89,13 @@ jobs:
8989

9090
steps:
9191
- name: Checkout Bevy
92-
uses: actions/checkout@v5
92+
uses: actions/checkout@v6
9393
with:
9494
repository: ${{ inputs.repository }}
9595
ref: ${{ inputs.gitref }}
9696

9797
- name: Checkout patches
98-
uses: actions/checkout@v5
98+
uses: actions/checkout@v6
9999
with:
100100
path: "runner-patches"
101101

.github/workflows/workflow-rebuild-website.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
name: github-pages
1717
url: ${{ steps.deployment.outputs.page_url }}
1818
steps:
19-
- uses: actions/checkout@v5
20-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
20+
- uses: actions/checkout@v6
2121
with:
2222
ref: "results"
2323
path: "results"

.github/workflows/workflow-wasm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
# browser: "chromium"
7474
# api: "webgpu"
7575
steps:
76-
- uses: actions/checkout@v5
76+
- uses: actions/checkout@v6
7777
with:
7878
repository: ${{ inputs.repository }}
7979
ref: ${{ inputs.gitref }}

0 commit comments

Comments
 (0)