Skip to content

Commit 63da9fe

Browse files
Merge branch 'master' into ktyagi/redaction
2 parents 4834cce + a6c3c32 commit 63da9fe

File tree

466 files changed

+18908
-17682
lines changed

Some content is hidden

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

466 files changed

+18908
-17682
lines changed

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

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

2121
steps:
2222
# Always checkout the code because we don't always have a PR url.
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424

2525
# Only run remaining steps if there are changes to requirements/**
2626
# We do this instead of using path based short-circuiting.

.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@v5
26+
uses: actions/checkout@v6
2727

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

.github/workflows/check_python_dependencies.yml

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

1515
steps:
1616
- name: Checkout Repository
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818

1919
- name: Set up Python
2020
uses: actions/setup-python@v6

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
os: ["ubuntu-24.04"]
1616

1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
- name: Set up Python
2020
uses: actions/setup-python@v6
2121
with:
@@ -33,7 +33,7 @@ jobs:
3333

3434
- name: Cache pip dependencies
3535
id: cache-dependencies
36-
uses: actions/cache@v4
36+
uses: actions/cache@v5
3737
with:
3838
path: ${{ steps.pip-cache-dir.outputs.dir }}
3939
key: ${{ runner.os }}-pip-${{ hashFiles('requirements/edx/development.txt') }}

.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@v5
22+
uses: actions/checkout@v6
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@v7
47+
uses: peter-evans/create-pull-request@v8
4848
with:
4949
branch: "${{ github.triggering_actor }}/compile-python-deps"
5050
branch-suffix: short-commit-hash

.github/workflows/js-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
- "3.11"
2020

2121
steps:
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v6
2323
- name: Fetch master to compare coverage
2424
run: git fetch --depth=1 origin master
2525

2626
- name: Setup Node
27-
uses: actions/setup-node@v5
27+
uses: actions/setup-node@v6
2828
with:
2929
node-version: ${{ matrix.node-version }}
3030
cache: 'npm'
@@ -55,7 +55,7 @@ jobs:
5555
5656
- name: Cache pip dependencies
5757
id: cache-dependencies
58-
uses: actions/cache@v4
58+
uses: actions/cache@v5
5959
with:
6060
path: ${{ steps.pip-cache-dir.outputs.dir }}
6161
key: ${{ runner.os }}-pip-${{ hashFiles('requirements/edx/base.txt') }}
@@ -73,7 +73,7 @@ jobs:
7373
npm run test
7474
7575
- name: Save Job Artifacts
76-
uses: actions/upload-artifact@v4
76+
uses: actions/upload-artifact@v6
7777
with:
7878
name: Build-Artifacts
7979
path: |

.github/workflows/lint-imports.yml

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

1515
steps:
1616
- name: Check out branch
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818

1919
- name: Set up Python
2020
uses: actions/setup-python@v6
@@ -33,7 +33,7 @@ jobs:
3333

3434
- name: Cache pip dependencies
3535
id: cache-dependencies
36-
uses: actions/cache@v4
36+
uses: actions/cache@v5
3737
with:
3838
path: ${{ steps.pip-cache-dir.outputs.dir }}
3939
key: ${{ runner.os }}-pip-${{ hashFiles('requirements/edx/development.txt') }}

.github/workflows/migrations-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
docker exec ${{ job.services.mongo.id }} mongosh --host 127.0.0.1 --username edxapp --password password --eval 'use edxapp; db.adminCommand("ping");' edxapp
7272
7373
- name: Checkout repo
74-
uses: actions/checkout@v5
74+
uses: actions/checkout@v6
7575

7676
- name: Setup Python ${{ matrix.python-version }}
7777
uses: actions/setup-python@v6
@@ -90,7 +90,7 @@ jobs:
9090
9191
- name: Cache pip dependencies
9292
id: cache-dependencies
93-
uses: actions/cache@v4
93+
uses: actions/cache@v5
9494
with:
9595
path: ${{ steps.pip-cache-dir.outputs.dir }}
9696
key: ${{ runner.os }}-pip-${{ hashFiles('requirements/edx/development.txt') }}

.github/workflows/pylint-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
name: pylint ${{ matrix.module-name }}
3333
steps:
3434
- name: Check out repo
35-
uses: actions/checkout@v5
35+
uses: actions/checkout@v6
3636

3737
- name: Install required system packages
3838
run: sudo apt-get update && sudo apt-get install libxmlsec1-dev
@@ -49,7 +49,7 @@ jobs:
4949
5050
- name: Cache pip dependencies
5151
id: cache-dependencies
52-
uses: actions/cache@v4
52+
uses: actions/cache@v5
5353
with:
5454
path: ${{ steps.pip-cache-dir.outputs.dir }}
5555
key: ${{ runner.os }}-pip-${{ hashFiles('requirements/edx/development.txt') }}

.github/workflows/quality-checks.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
node-version: [20]
2121

2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
with:
2525
fetch-depth: 2
2626

@@ -36,7 +36,7 @@ jobs:
3636
python-version: ${{ matrix.python-version }}
3737

3838
- name: Setup Node
39-
uses: actions/setup-node@v5
39+
uses: actions/setup-node@v6
4040
with:
4141
node-version: ${{ matrix.node-version }}
4242

@@ -50,7 +50,7 @@ jobs:
5050
5151
- name: Cache pip dependencies
5252
id: cache-dependencies
53-
uses: actions/cache@v4
53+
uses: actions/cache@v5
5454
with:
5555
path: ${{ steps.pip-cache-dir.outputs.dir }}
5656
key: ${{ runner.os }}-pip-${{ hashFiles('requirements/edx/testing.txt') }}
@@ -85,7 +85,7 @@ jobs:
8585
8686
- name: Save Job Artifacts
8787
if: always()
88-
uses: actions/upload-artifact@v4
88+
uses: actions/upload-artifact@v6
8989
with:
9090
name: Build-Artifacts
9191
path: |

0 commit comments

Comments
 (0)