Skip to content

Commit 7e3253d

Browse files
chore(deps): bump actions/checkout from 5 to 6 (#49272)
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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 9e45260 commit 7e3253d

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

.github/workflows/automerge-transifex-app-prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
# Merges the pull request
1313
steps:
1414
- name: clone repository
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 0
1818
- name: merge pull request

.github/workflows/extract-translation-source-files.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ jobs:
163163
id: date
164164
run: echo $BRANCH
165165
- name: clone openedx/openedx-translations
166-
uses: actions/checkout@v5
166+
uses: actions/checkout@v6
167167

168168
# creates the branch where all the translations will be added to
169169
- name: make and push a new branch
@@ -186,7 +186,7 @@ jobs:
186186
steps:
187187
# Clones the openedx-translations repo
188188
- name: clone openedx/openedx-translations
189-
uses: actions/checkout@v5
189+
uses: actions/checkout@v6
190190
with:
191191
ref: ${{ needs.setup-branch.outputs.branch }}
192192

@@ -196,7 +196,7 @@ jobs:
196196

197197
# Clones the repository
198198
- name: clone ${{ github.repository_owner }}/${{ matrix.repo }}
199-
uses: actions/checkout@v5
199+
uses: actions/checkout@v6
200200
with:
201201
repository: ${{ github.repository_owner }}/${{ matrix.repo }}
202202
ref: ${{ github.event.inputs.ref }}
@@ -336,13 +336,13 @@ jobs:
336336
steps:
337337
# Clones the openedx-translations repo
338338
- name: clone openedx/openedx-translations
339-
uses: actions/checkout@v5
339+
uses: actions/checkout@v6
340340
with:
341341
ref: ${{ needs.setup-branch.outputs.branch }}
342342

343343
# Clones the repository
344344
- name: clone ${{ github.repository_owner }}/${{ matrix.repo }}
345-
uses: actions/checkout@v5
345+
uses: actions/checkout@v6
346346
with:
347347
repository: ${{ github.repository_owner }}/${{ matrix.repo }}
348348
ref: ${{ github.event.inputs.ref }}
@@ -403,13 +403,13 @@ jobs:
403403
steps:
404404
# Clones the openedx-translations repo
405405
- name: clone openedx/openedx-translations
406-
uses: actions/checkout@v5
406+
uses: actions/checkout@v6
407407
with:
408408
ref: ${{ needs.setup-branch.outputs.branch }}
409409

410410
# Clones the repository
411411
- name: clone ${{ github.repository_owner }}/${{ matrix.repository_config.repo }}
412-
uses: actions/checkout@v5
412+
uses: actions/checkout@v6
413413
with:
414414
repository: ${{ github.repository_owner }}/${{ matrix.repository_config.repo }}
415415
ref: ${{ github.event.inputs.ref || matrix.repository_config.ref }}
@@ -474,7 +474,7 @@ jobs:
474474
steps:
475475
# Clones the openedx-translations repo on the automated/extract-translation-source-files-# branch
476476
- name: clone openedx/openedx-translations
477-
uses: actions/checkout@v5
477+
uses: actions/checkout@v6
478478
with:
479479
ref: ${{ needs.setup-branch.outputs.branch }}
480480
fetch-depth: 0

.github/workflows/fix-transifex-resource-names.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
steps:
3636
# Clones the openedx-translations repo
3737
- name: clone openedx/openedx-translations
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@v6
3939

4040
# Sets up Python
4141
- name: setup python

.github/workflows/python-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
2525
# Clones the openedx-translations repo
2626
- name: clone openedx/openedx-translations
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828

2929
- name: Setup node for testing
3030
uses: actions/setup-node@v6

.github/workflows/release-project-sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
steps:
2828
# Clones the openedx-translations repo
2929
- name: clone openedx/openedx-translations
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131

3232
# Sets up Python
3333
- name: setup python

.github/workflows/validate-translation-files.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
# Clones the openedx-translations repo
3030
- name: clone openedx/openedx-translations
3131
if: steps.filter.outputs.changedtranslations == 'true'
32-
uses: actions/checkout@v5
32+
uses: actions/checkout@v6
3333

3434
- name: Install msgfmt from gettext for po-file validation
3535
if: steps.filter.outputs.changedtranslations == 'true' && matrix.file-type == 'po'

0 commit comments

Comments
 (0)