From a98eae4c72c42911f87d8530f1a2818eca196461 Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk Date: Mon, 23 Sep 2024 15:20:22 -0500 Subject: [PATCH 1/7] Add CODEOWNERS file --- .github/CODEOWNERS | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..05c1669 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @oleksandr-pavlyk @xaleryb @ekomarova From 2b584cf29114d7d704911a37fd8c642c4e2b3e15 Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk Date: Mon, 23 Sep 2024 15:20:32 -0500 Subject: [PATCH 2/7] Add dependabot file --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..5ace460 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" From 8ff6665d087c77e72c9c012cc7ded482357e8689 Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk Date: Mon, 23 Sep 2024 15:20:47 -0500 Subject: [PATCH 3/7] Add OpenSSF scorecard workflow --- .github/workflows/openssf-scorecard.yml | 74 +++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 .github/workflows/openssf-scorecard.yml diff --git a/.github/workflows/openssf-scorecard.yml b/.github/workflows/openssf-scorecard.yml new file mode 100644 index 0000000..586f7bc --- /dev/null +++ b/.github/workflows/openssf-scorecard.yml @@ -0,0 +1,74 @@ +# This workflow uses actions that are not certified by GitHub. They are provided +# by a third-party and are governed by separate terms of service, privacy +# policy, and support documentation. + +name: Scorecard supply-chain security +on: + # For Branch-Protection check. Only the default branch is supported. See + # https://github.com/ossf/scorecard/blob/main/docs/checks.md#branch-protection + branch_protection_rule: + # To guarantee Maintained check is occasionally updated. See + # https://github.com/ossf/scorecard/blob/main/docs/checks.md#maintained + schedule: + - cron: '28 2 * * 1' + - cron: '28 2 * * 4' + push: + branches: [ "master" ] + +# Declare default permissions as read only. +permissions: read-all + +jobs: + analysis: + name: Scorecard analysis + runs-on: ubuntu-latest + timeout-minutes: 30 + permissions: + # Needed to upload the results to code-scanning dashboard. + security-events: write + # Needed to publish results and get a badge (see publish_results below). + id-token: write + # Uncomment the permissions below if installing in a private repository. + # contents: read + # actions: read + + steps: + - name: "Checkout code" + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + with: + persist-credentials: false + + - name: "Run analysis" + uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46 # v2.4.0 + with: + results_file: results.sarif + results_format: sarif + # (Optional) "write" PAT token. Uncomment the `repo_token` line below if: + # - you want to enable the Branch-Protection check on a *public* repository, or + # - you are installing Scorecard on a *private* repository + # To create the PAT, follow the steps in https://github.com/ossf/scorecard-action#authentication-with-pat. + # repo_token: ${{ secrets.SCORECARD_TOKEN }} + + # Public repositories: + # - Publish results to OpenSSF REST API for easy access by consumers + # - Allows the repository to include the Scorecard badge. + # - See https://github.com/ossf/scorecard-action#publishing-results. + # For private repositories: + # - `publish_results` will always be set to `false`, regardless + # of the value entered here. + publish_results: true + + # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF + # format to the repository Actions tab. + - name: "Upload artifact" + uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 + with: + name: SARIF file + path: results.sarif + retention-days: 14 + + # Upload the results to GitHub's code scanning dashboard. + - name: "Upload to code-scanning" + uses: github/codeql-action/upload-sarif@294a9d92911152fe08befb9ec03e240add280cb3 # v3.26.8 + with: + sarif_file: results.sarif From a2d618299e1afdd3276d5fec2dff8fecc8a409cb Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk Date: Mon, 23 Sep 2024 16:14:01 -0500 Subject: [PATCH 4/7] Fixed upload of Windows build artifact --- .github/workflows/conda-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/conda-package.yml b/.github/workflows/conda-package.yml index a4ac110..6f96bfa 100644 --- a/.github/workflows/conda-package.yml +++ b/.github/workflows/conda-package.yml @@ -177,7 +177,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }} - path: ${{ env.conda-bld }}${{ env.PACKAGE_NAME }}-*.tar.bz2 + path: ${{ env.CONDA_BLD }}${{ env.PACKAGE_NAME }}-*.tar.bz2 test_windows: needs: build_windows From 5270b7c9ad6258616688273a9e56081fb0b7d16d Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk Date: Mon, 23 Sep 2024 16:46:05 -0500 Subject: [PATCH 5/7] Add a step to output content of workdir --- .github/workflows/conda-package.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/conda-package.yml b/.github/workflows/conda-package.yml index 6f96bfa..f4a7206 100644 --- a/.github/workflows/conda-package.yml +++ b/.github/workflows/conda-package.yml @@ -222,11 +222,19 @@ jobs: conda activate conda index ${{ env.workdir }}\channel + - name: Dump mkl_umath version info from created channel to STDOUT + shell: cmd /C CALL {0} + run: | + conda activate + conda search ${{ env.PACKAGE_NAME }} -c ${{ env.workdir }}/channel --override-channels --info --json - name: Dump mkl_umath version info from created channel into ver.json shell: cmd /C CALL {0} run: | conda activate conda search ${{ env.PACKAGE_NAME }} -c ${{ env.workdir }}/channel --override-channels --info --json > ${{ env.workdir }}\ver.json + - name: Output content of workdir + shell: pwsh + run: Get-ChildItem -Path ${{ env.workdir }} - name: Output content of produced ver.json shell: pwsh run: Get-Content -Path ${{ env.workdir }}\ver.json From ff3bc26a698b1b0f65bc4469c635d33b7a675d15 Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk Date: Mon, 23 Sep 2024 17:24:58 -0500 Subject: [PATCH 6/7] Add SECURITY.md file --- SECURITY.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 SECURITY.md diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..556938b --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,12 @@ +# Security Policy + +## Report a Vulnerability + +Please report security issues or vulnerabilities to the [Intel® Security Center]. + +For more information on how Intel® works to resolve security issues, see +[Vulnerability Handling Guidelines]. + +[Intel® Security Center]:https://www.intel.com/content/www/us/en/security-center/default.html + +[Vulnerability Handling Guidelines]:https://www.intel.com/content/www/us/en/security-center/vulnerability-handling-guidelines.html From 535e68a37ad4ba7d882ad7198d0f7dee324daf2f Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk Date: Tue, 24 Sep 2024 07:24:36 -0500 Subject: [PATCH 7/7] Attempt to fix test step for Windows --- .github/workflows/conda-package.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/conda-package.yml b/.github/workflows/conda-package.yml index f4a7206..6a25b70 100644 --- a/.github/workflows/conda-package.yml +++ b/.github/workflows/conda-package.yml @@ -200,11 +200,14 @@ jobs: uses: actions/download-artifact@v3 with: name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }} + - uses: conda-incubator/setup-miniconda@v3 with: + auto-update-conda: true + conda-build-version: '*' miniforge-variant: Miniforge3 miniforge-version: latest - activate-environment: build + activate-environment: mkl_umath_test channels: conda-forge python-version: ${{ matrix.python }} @@ -219,18 +222,15 @@ jobs: - name: Index the channel shell: cmd /C CALL {0} run: | - conda activate conda index ${{ env.workdir }}\channel - name: Dump mkl_umath version info from created channel to STDOUT shell: cmd /C CALL {0} run: | - conda activate conda search ${{ env.PACKAGE_NAME }} -c ${{ env.workdir }}/channel --override-channels --info --json - name: Dump mkl_umath version info from created channel into ver.json shell: cmd /C CALL {0} run: | - conda activate conda search ${{ env.PACKAGE_NAME }} -c ${{ env.workdir }}/channel --override-channels --info --json > ${{ env.workdir }}\ver.json - name: Output content of workdir shell: pwsh @@ -248,7 +248,6 @@ jobs: FOR /F "tokens=* USEBACKQ" %%F IN (`python -c "%SCRIPT%"`) DO ( SET PACKAGE_VERSION=%%F ) - conda activate conda install -n mkl_umath_test ${{ env.PACKAGE_NAME }}=%PACKAGE_VERSION% python=${{ matrix.python }} -c ${{ env.workdir }}/channel ${{ env.CHANNELS }} --only-deps --dry-run > lockfile - name: Display lockfile content shell: pwsh