Skip to content

Commit 5549dcd

Browse files
Merge branch 'master' into master
2 parents 5a8a892 + 51bfd3f commit 5549dcd

File tree

87 files changed

+4070
-114
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+4070
-114
lines changed

.github/workflows/check-consistent-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
echo "RELEVANT=true" >> "$GITHUB_ENV"
3535
fi
3636
37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v5
3838
if: ${{ env.RELEVANT == 'true' }}
3939

4040
- uses: actions/setup-python@v5

.github/workflows/check-for-tutorial-prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
name: provide helpful bot comment
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727

2828
- name: Comment PR
2929
uses: thollander/actions-comment-pull-request@v2

.github/workflows/check_python_dependencies.yml

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

1414
steps:
1515
- name: Checkout Repository
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717

1818
- name: Set up Python
1919
uses: actions/setup-python@v5

.github/workflows/ci-static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
os: ["ubuntu-24.04"]
1414

1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- name: Set up Python
1818
uses: actions/setup-python@v5
1919
with:

.github/workflows/compile-python-requirements.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Check out target branch
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323
with:
2424
ref: "${{ inputs.branch }}"
2525

@@ -44,7 +44,7 @@ jobs:
4444
4545
- name: Make a PR
4646
id: make-pr
47-
uses: peter-evans/create-pull-request@v6
47+
uses: peter-evans/create-pull-request@v7
4848
with:
4949
branch: "${{ github.triggering_actor }}/compile-python-deps"
5050
branch-suffix: short-commit-hash

.github/workflows/js-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- "3.11"
1919

2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- name: Fetch master to compare coverage
2323
run: git fetch --depth=1 origin master
2424

.github/workflows/lint-imports.yml

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

1414
steps:
1515
- name: Check out branch
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717

1818
- name: Set up Python
1919
uses: actions/setup-python@v5

.github/workflows/migrations-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
docker exec ${{ job.services.mongo.id }} mongosh --host 127.0.0.1 --username edxapp --password password --eval 'use edxapp; db.adminCommand("ping");' edxapp
7171
7272
- name: Checkout repo
73-
uses: actions/checkout@v4
73+
uses: actions/checkout@v5
7474

7575
- name: Setup Python ${{ matrix.python-version }}
7676
uses: actions/setup-python@v5

.github/workflows/pylint-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
name: pylint ${{ matrix.module-name }}
3232
steps:
3333
- name: Check out repo
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535

3636
- name: Install required system packages
3737
run: sudo apt-get update && sudo apt-get install libxmlsec1-dev

.github/workflows/quality-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
node-version: [20]
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
with:
2424
fetch-depth: 2
2525

0 commit comments

Comments
 (0)