From dc2951ed22232372bd242a631f0bd79b0d34d1d5 Mon Sep 17 00:00:00 2001 From: rlfagan Date: Mon, 15 Jul 2024 14:21:13 -0400 Subject: [PATCH 1/6] Update GitHub Actions workflow for Fossa scan --- .github/workflows/workflow.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/workflows/workflow.yml diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml new file mode 100644 index 000000000..4109bea8d --- /dev/null +++ b/.github/workflows/workflow.yml @@ -0,0 +1,8 @@ +jobs: + fossa-scan: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: fossas/fossa-action@main + with: + api-key: ${{secrets.fossaApiKey}} From 1f9fc0efbf753f31f29fd75c6290fc56c57462c7 Mon Sep 17 00:00:00 2001 From: rlfagan Date: Mon, 15 Jul 2024 14:27:36 -0400 Subject: [PATCH 2/6] Update GitHub Actions workflow for Fossa scan --- .github/workflows/workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 4109bea8d..bd34f46f3 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -5,4 +5,4 @@ jobs: - uses: actions/checkout@v3 - uses: fossas/fossa-action@main with: - api-key: ${{secrets.fossaApiKey}} + api-key: 24d4692b10eb422ce53478ddb6665857 From e661b4ea0bd4549542d68c38edc3194dc54669c6 Mon Sep 17 00:00:00 2001 From: rlfagan Date: Mon, 15 Jul 2024 14:42:54 -0400 Subject: [PATCH 3/6] Update GitHub Actions workflow for Fossa scan --- .github/workflows/workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index bd34f46f3..9b2580fc8 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -5,4 +5,4 @@ jobs: - uses: actions/checkout@v3 - uses: fossas/fossa-action@main with: - api-key: 24d4692b10eb422ce53478ddb6665857 + api-key: '{{secrets.fossaApiKey}}' From 513f08dd3dcde244f8600e8374ad1dc5a89123b6 Mon Sep 17 00:00:00 2001 From: rlfagan Date: Mon, 15 Jul 2024 14:52:29 -0400 Subject: [PATCH 4/6] Update GitHub Actions workflow for Fossa scan --- .github/workflows/link_checker.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/link_checker.yml diff --git a/.github/workflows/link_checker.yml b/.github/workflows/link_checker.yml new file mode 100644 index 000000000..e20d47a70 --- /dev/null +++ b/.github/workflows/link_checker.yml @@ -0,0 +1,14 @@ +jobs: + fossa-scan: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: fossas/fossa-action@main + with: + api-key: ${{secrets.fossaApiKey}} +name: Link Checker +'on': + push: + branches: + - '**' + workflow_dispatch: null From 3e2dd2e33f34d1b33e7a83b6702572f743b4941f Mon Sep 17 00:00:00 2001 From: rlfagan Date: Mon, 15 Jul 2024 15:02:32 -0400 Subject: [PATCH 5/6] Update GitHub Actions workflow for Fossa scan --- .github/workflows/link_checker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/link_checker.yml b/.github/workflows/link_checker.yml index e20d47a70..dce3d9c8c 100644 --- a/.github/workflows/link_checker.yml +++ b/.github/workflows/link_checker.yml @@ -5,8 +5,8 @@ jobs: - uses: actions/checkout@v3 - uses: fossas/fossa-action@main with: - api-key: ${{secrets.fossaApiKey}} -name: Link Checker + api-key: 3327ed5d39827e515060cfc9efb4d84e +name: GH Action Bulk On-boarder 'on': push: branches: From e62ebdad792b72d7613a6d7e7a3a93cddb2cf05b Mon Sep 17 00:00:00 2001 From: rlfagan Date: Mon, 15 Jul 2024 15:35:16 -0400 Subject: [PATCH 6/6] Disable GitHub Actions workflows --- .github/workflows/link_checker.yml | 15 +------- .github/workflows/pythonpackage.yml | 60 +---------------------------- .github/workflows/workflow.yml | 9 +---- 3 files changed, 3 insertions(+), 81 deletions(-) diff --git a/.github/workflows/link_checker.yml b/.github/workflows/link_checker.yml index dce3d9c8c..3fd63da0c 100644 --- a/.github/workflows/link_checker.yml +++ b/.github/workflows/link_checker.yml @@ -1,14 +1 @@ -jobs: - fossa-scan: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: fossas/fossa-action@main - with: - api-key: 3327ed5d39827e515060cfc9efb4d84e -name: GH Action Bulk On-boarder -'on': - push: - branches: - - '**' - workflow_dispatch: null +# Workflow disabled diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index a4f765220..3fd63da0c 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -1,59 +1 @@ -# This workflow will install Python dependencies, run tests and lint with a variety of Python versions -# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions - -name: Python package - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - build: - - runs-on: ubuntu-latest - strategy: - matrix: - python-version: [3.5, 3.6, 3.7, 3.8] - - steps: - - uses: actions/checkout@v2 - with: - fetch-depth: 9999 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies and prepare tests - run: | - set -x - python -m pip install --upgrade pip - python --version; git --version - git submodule update --init --recursive - git fetch --tags - - pip install -r test-requirements.txt - TRAVIS=yes ./init-tests-after-clone.sh - - git config --global user.email "travis@ci.com" - git config --global user.name "Travis Runner" - # If we rewrite the user's config by accident, we will mess it up - # and cause subsequent tests to fail - cat test/fixtures/.gitconfig >> ~/.gitconfig - - name: Lint with flake8 - run: | - set -x - pip install flake8 - # stop the build if there are Python syntax errors or undefined names - flake8 --ignore=W293,E265,E266,W503,W504,E731 --count --show-source --statistics - - name: Test with nose - run: | - set -x - pip install nose - nosetests -v --with-coverage - - name: Documentation - run: | - set -x - pip install -r doc/requirements.txt - make -C doc html \ No newline at end of file +# Workflow disabled diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 9b2580fc8..3fd63da0c 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -1,8 +1 @@ -jobs: - fossa-scan: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: fossas/fossa-action@main - with: - api-key: '{{secrets.fossaApiKey}}' +# Workflow disabled