From 52fe02e63d95720e39cb27ce963b23c0b95ce374 Mon Sep 17 00:00:00 2001 From: James Kachel Date: Mon, 17 Mar 2025 15:41:15 -0500 Subject: [PATCH 1/2] Change the frontend hash URL it's being put at /, doof thinks it's at /static/hash.txt --- repos_info.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/repos_info.json b/repos_info.json index 36be9da..0f732f3 100644 --- a/repos_info.json +++ b/repos_info.json @@ -191,7 +191,7 @@ "name": "unified-ecommerce", "repo_url": "https://github.com/mitodl/unified-ecommerce.git", "ci_hash_url": "https://api-pay-ci.ol.mit.edu/static/hash.txt", - "rc_hash_url": "https://api-pay-rc.ol.mit.edu/static/hash.txt", + "rc_hash_url": "https://api-pay-qa.ol.mit.edu/static/hash.txt", "prod_hash_url": "https://api-pay.ol.mit.edu/static/hash.txt", "channel_name": "doof-ue-backend", "project_type": "web_application", @@ -201,9 +201,9 @@ { "name": "unified-ecommerce-frontend", "repo_url": "https://github.com/mitodl/unified-ecommerce-frontend.git", - "ci_hash_url": "https://pay-ci.ol.mit.edu/static/hash.txt", - "rc_hash_url": "https://pay-rc.ol.mit.edu/static/hash.txt", - "prod_hash_url": "https://pay.ol.mit.edu/static/hash.txt", + "ci_hash_url": "https://pay-ci.ol.mit.edu/hash.txt", + "rc_hash_url": "https://pay-qa.ol.mit.edu/hash.txt", + "prod_hash_url": "https://pay.ol.mit.edu/hash.txt", "channel_name": "doof-ue-frontend", "project_type": "web_application", "web_application_type": "django", From 2c8df7e43ffb140dab91b03754ce4f066319b2e7 Mon Sep 17 00:00:00 2001 From: James Kachel Date: Mon, 17 Mar 2025 15:56:38 -0500 Subject: [PATCH 2/2] Pin used actions to commits; update them to the latest, including actions/checkout (which was v1 and was deprecated 2025-02-01) --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index efb30a6..eb3272b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,18 +5,18 @@ jobs: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Set up JS requirements run: npm install - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0 with: python-version: "3.9" - id: cache - uses: actions/cache@v1 + uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf # v4.2.2 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt', '**/test_requirements.txt') }}