Skip to content

Commit 8b3ca7c

Browse files
dependabot[bot]OmarIthawi
authored andcommitted
chore(deps): bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent b960a42 commit 8b3ca7c

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@v4
15+
uses: actions/checkout@v5
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@v4
166+
uses: actions/checkout@v5
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@v4
189+
uses: actions/checkout@v5
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@v4
199+
uses: actions/checkout@v5
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@v4
339+
uses: actions/checkout@v5
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@v4
345+
uses: actions/checkout@v5
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@v4
406+
uses: actions/checkout@v5
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@v4
412+
uses: actions/checkout@v5
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@v4
477+
uses: actions/checkout@v5
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
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
# Clones the openedx-translations repo
2121
- name: clone openedx/openedx-translations
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323

2424
# Sets up Python
2525
- 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@v4
27+
uses: actions/checkout@v5
2828

2929
- name: Install gettext
3030
if: steps.filter.outputs.non_pofiles == 'true'

.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@v4
30+
uses: actions/checkout@v5
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
@@ -24,7 +24,7 @@ jobs:
2424
# Clones the openedx-translations repo
2525
- name: clone openedx/openedx-translations
2626
if: steps.filter.outputs.pofiles == 'true'
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828

2929
- name: Install gettext
3030
if: steps.filter.outputs.pofiles == 'true'

0 commit comments

Comments
 (0)