diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml index 583dff93..6eb6ae06 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -17,7 +17,7 @@ jobs: - name: 'Checkout Repository' uses: actions/checkout@v3 - name: 'Dependency Review' - uses: actions/dependency-review-action@v1 + uses: actions/dependency-review-action@v4 with: # verify=False is never used in HSDS allow-ghsas: ["GHSA-9wx4-h78v-vm56"] diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 34934776..f2f3ee68 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -188,7 +188,7 @@ jobs: BUCKET_NAME: hsdstest name: Test HSDS with socket - runs-on: ubuntu-latest + runs-on: [ubuntu-latest, windows-latest] strategy: matrix: python-version: ["3.12"] @@ -213,9 +213,9 @@ jobs: pip install -e . # Requests 2.32.0 breaks requests-unixsocket, used by HSDS for socket connections - - name: Fix requests version - run: | - pip install requests==2.31.0 + # - name: Fix requests version + # run: | + # pip install requests==2.31.0 - name: Run HSDS unit tests shell: bash