From ccb325e4cae1898454dfa2506cb0b03e369dbcbc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 13 Dec 2024 16:19:03 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .../workflows/automerge-transifex-app-prs.yml | 2 +- .../extract-translation-source-files.yml | 16 ++++++++-------- .../workflows/fix-transifex-resource-names.yml | 2 +- .github/workflows/python-tests.yml | 2 +- .github/workflows/release-project-sync.yml | 2 +- .github/workflows/validate-translation-files.yml | 2 +- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/automerge-transifex-app-prs.yml b/.github/workflows/automerge-transifex-app-prs.yml index 67c08bd209c..89e64598478 100644 --- a/.github/workflows/automerge-transifex-app-prs.yml +++ b/.github/workflows/automerge-transifex-app-prs.yml @@ -12,7 +12,7 @@ jobs: # Merges the pull request steps: - name: clone repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: merge pull request diff --git a/.github/workflows/extract-translation-source-files.yml b/.github/workflows/extract-translation-source-files.yml index 98491866b9a..2758039ced9 100644 --- a/.github/workflows/extract-translation-source-files.yml +++ b/.github/workflows/extract-translation-source-files.yml @@ -167,7 +167,7 @@ jobs: id: date run: echo $BRANCH - name: clone openedx/openedx-translations - uses: actions/checkout@v3 + uses: actions/checkout@v4 # creates the branch where all the translations will be added to - name: make and push a new branch @@ -190,7 +190,7 @@ jobs: steps: # Clones the openedx-translations repo - name: clone openedx/openedx-translations - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ needs.setup-branch.outputs.branch }} @@ -200,7 +200,7 @@ jobs: # Clones the repository - name: clone ${{ github.repository_owner }}/${{ matrix.repo }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: ${{ github.repository_owner }}/${{ matrix.repo }} ref: ${{ github.event.inputs.ref }} @@ -340,13 +340,13 @@ jobs: steps: # Clones the openedx-translations repo - name: clone openedx/openedx-translations - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ needs.setup-branch.outputs.branch }} # Clones the repository - name: clone ${{ github.repository_owner }}/${{ matrix.repo }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: ${{ github.repository_owner }}/${{ matrix.repo }} ref: ${{ github.event.inputs.ref }} @@ -407,13 +407,13 @@ jobs: steps: # Clones the openedx-translations repo - name: clone openedx/openedx-translations - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ needs.setup-branch.outputs.branch }} # Clones the repository - name: clone ${{ github.repository_owner }}/${{ matrix.repository_config.repo }} - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: ${{ github.repository_owner }}/${{ matrix.repository_config.repo }} ref: ${{ github.event.inputs.ref || matrix.repository_config.ref }} @@ -478,7 +478,7 @@ jobs: steps: # Clones the openedx-translations repo on the automated/extract-translation-source-files-# branch - name: clone openedx/openedx-translations - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ needs.setup-branch.outputs.branch }} fetch-depth: 0 diff --git a/.github/workflows/fix-transifex-resource-names.yml b/.github/workflows/fix-transifex-resource-names.yml index efdf5be0d8a..cf540ec4647 100644 --- a/.github/workflows/fix-transifex-resource-names.yml +++ b/.github/workflows/fix-transifex-resource-names.yml @@ -19,7 +19,7 @@ jobs: steps: # Clones the openedx-translations repo - name: clone openedx/openedx-translations - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Sets up Python - name: setup python diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 75d85bebf10..20957527041 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -24,7 +24,7 @@ jobs: # Clones the openedx-translations repo - name: clone openedx/openedx-translations - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install gettext if: steps.filter.outputs.non_pofiles == 'true' diff --git a/.github/workflows/release-project-sync.yml b/.github/workflows/release-project-sync.yml index 087f93a9361..6d8945f8195 100644 --- a/.github/workflows/release-project-sync.yml +++ b/.github/workflows/release-project-sync.yml @@ -27,7 +27,7 @@ jobs: steps: # Clones the openedx-translations repo - name: clone openedx/openedx-translations - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Sets up Python - name: setup python diff --git a/.github/workflows/validate-translation-files.yml b/.github/workflows/validate-translation-files.yml index 1cd312f0d3d..9c29041ca05 100644 --- a/.github/workflows/validate-translation-files.yml +++ b/.github/workflows/validate-translation-files.yml @@ -24,7 +24,7 @@ jobs: # Clones the openedx-translations repo - name: clone openedx/openedx-translations if: steps.filter.outputs.pofiles == 'true' - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install gettext if: steps.filter.outputs.pofiles == 'true'