From 683ff36087247413000fd0637df7c23b6d8f9b96 Mon Sep 17 00:00:00 2001 From: Matthew Li Date: Tue, 15 Apr 2025 15:18:59 -0700 Subject: [PATCH 1/4] Update GitHub Actions build base --- .github/workflows/django_testing_ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/django_testing_ci.yml b/.github/workflows/django_testing_ci.yml index 66e239f0e0..c7f4075571 100644 --- a/.github/workflows/django_testing_ci.yml +++ b/.github/workflows/django_testing_ci.yml @@ -15,7 +15,7 @@ on: jobs: build: - runs-on: ubuntu-20.04 # Default github actions environment for Linux + runs-on: ubuntu-22.04 services: postgres: # Set up a database container with the following specifications From f56051ec016f2890e5a21fe9a197b717882c0cc9 Mon Sep 17 00:00:00 2001 From: Hesham Elbashandy <47407500+helbashandy@users.noreply.github.com> Date: Mon, 30 Jun 2025 14:35:02 -0700 Subject: [PATCH 2/4] Create dependabot.yml (#680) * Create dependabot.yml * Update dependabot.yml * Update django_testing_ci.yml --- .github/dependabot.yml | 11 +++++++++++ .github/workflows/django_testing_ci.yml | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..9d866e3928 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "pip" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" diff --git a/.github/workflows/django_testing_ci.yml b/.github/workflows/django_testing_ci.yml index 9780cd3949..0347a3b5ce 100644 --- a/.github/workflows/django_testing_ci.yml +++ b/.github/workflows/django_testing_ci.yml @@ -52,7 +52,7 @@ jobs: uses: actions/cache@v3 with: path: ~/venv - key: ${{ runner.os }}-python310-packages-${{ hashFiles('requirements.txt') }} + key: ${{ runner.os }}-python-310-packages-${{ hashFiles('requirements.txt') }} - if: ${{ steps.cache-python.outputs.cache-hit != 'true' }} # If a cache is not found name: Install Python packages From f68bf8ea138cf2156f60f0f1a07d92f7f2f7a28c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Jul 2025 10:47:09 -0700 Subject: [PATCH 3/4] Bump pymdown-extensions from 6.2.1 to 10.16 (#682) Bumps [pymdown-extensions](https://github.com/facelessuser/pymdown-extensions) from 6.2.1 to 10.16. - [Release notes](https://github.com/facelessuser/pymdown-extensions/releases) - [Commits](https://github.com/facelessuser/pymdown-extensions/compare/6.2.1...10.16) --- updated-dependencies: - dependency-name: pymdown-extensions dependency-version: '10.16' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- docs/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index 26a99e4127..a4b418f2ba 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -7,6 +7,6 @@ mkdocs==1.0.4 mkdocs-material==4.6.0 mkdocs-minify-plugin==0.2.1 Pygments==2.5.2 -pymdown-extensions==6.2.1 +pymdown-extensions==10.16 PyYAML==5.3 six==1.14.0 From 6af94ea4e2d48234adce696b423606ef5828f044 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Jul 2025 20:25:20 +0000 Subject: [PATCH 4/4] Bump requests from 2.22.0 to 2.32.4 Bumps [requests](https://github.com/psf/requests) from 2.22.0 to 2.32.4. - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - [Commits](https://github.com/psf/requests/compare/v2.22.0...v2.32.4) --- updated-dependencies: - dependency-name: requests dependency-version: 2.32.4 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 313ebd9361..f1e1235dd9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -50,7 +50,7 @@ python-dateutil==2.8.0 python-memcached==1.59 pytz==2018.9 redis==3.2.1 -requests==2.22.0 +requests==2.32.4 sentry-sdk==1.5.6 six==1.12.0 sqlparse==0.3.0 diff --git a/setup.py b/setup.py index bea2699fa2..795f2f78e3 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ 'python-memcached==1.59', 'pytz==2018.9', 'redis==3.2.1', - 'requests==2.22.0', + 'requests==2.32.4', 'six==1.12.0', 'urllib3==1.24.2', 'wcwidth==0.1.7',