Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump actions/checkout from 3 to 4 #7508

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/automerge-transifex-app-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/extract-translation-source-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}

Expand All @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fix-transifex-resource-names.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-project-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-translation-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
Loading