From fd96b08aab9992140c7287e80b9eec44c4a9a4e7 Mon Sep 17 00:00:00 2001 From: James Woglom Date: Wed, 15 Jan 2025 19:14:20 -0500 Subject: [PATCH] stop running pipenv check --- .github/workflows/publish-docker.yml | 6 ++--- .github/workflows/python-package.yml | 38 ++++++++++++++-------------- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/workflows/publish-docker.yml b/.github/workflows/publish-docker.yml index 79e04dc..0fa09ba 100644 --- a/.github/workflows/publish-docker.yml +++ b/.github/workflows/publish-docker.yml @@ -38,13 +38,13 @@ jobs: steps: - name: Check out the repo uses: actions/checkout@v2 - + - name: Log in to Docker Hub uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - + - name: Extract metadata (tags, labels) for Docker id: meta uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38 @@ -55,7 +55,7 @@ jobs: type=ref,event=pr type=semver,pattern={{version}} type=semver,pattern={{major}}.{{minor}} - + - name: Build and push Docker image uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc with: diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index e871685..deb830c 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -28,25 +28,25 @@ jobs: python -m pip install --upgrade pip python -m pip install flake8 pytest pipenv pipenv install --system - - name: Run pipenv check - run: | - # DDoS attacks in wheel and setuptools packages, not relevant - # root certificate store, not relevant - pipenv check \ - --ignore 51499 \ - --ignore 52495 \ - --ignore 52365 \ - --ignore 59956 \ - --ignore 58755 \ - --ignore 67895 \ - --ignore 61893 \ - --ignore 61601 \ - --ignore 62044 \ - --ignore 67599 \ - --ignore 72083 \ - --ignore 71064 \ - --ignore 71608 \ - --ignore 72236 + # - name: Run pipenv check + # run: | + # # DDoS attacks in wheel and setuptools packages, not relevant + # # root certificate store, not relevant + # pipenv check \ + # --ignore 51499 \ + # --ignore 52495 \ + # --ignore 52365 \ + # --ignore 59956 \ + # --ignore 58755 \ + # --ignore 67895 \ + # --ignore 61893 \ + # --ignore 61601 \ + # --ignore 62044 \ + # --ignore 67599 \ + # --ignore 72083 \ + # --ignore 71064 \ + # --ignore 71608 \ + # --ignore 72236 - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names