Skip to content

Commit 3d7081c

Browse files
authored
Merge branch 'main' into dependabot/github_actions/actions/upload-artifact-5
2 parents 7accd82 + 43e848d commit 3d7081c

File tree

5 files changed

+7
-212
lines changed

5 files changed

+7
-212
lines changed

.github/CODE_OF_CONDUCT.md

Lines changed: 0 additions & 110 deletions
This file was deleted.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Contributing
22

33
To contribute to this project, please consider starting by [opening an issue](https://github.com/Zenable-io/ai-native-python/issues/new) to discuss the feature
4-
and its design, and reviewing our Contributors Code of Conduct [here](./.github/CODE_OF_CONDUCT.md).
4+
and its design.
55

66
Once you are ready to submit your contribution, please fork the repository and open a pull request with your changes.
77

{{cookiecutter.project_name|replace(" ", "")}}/.github/CODE_OF_CONDUCT.md

Lines changed: 0 additions & 95 deletions
This file was deleted.

{{cookiecutter.project_name|replace(" ", "")}}/.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
- name: Set env var for unique artifact uploads
102102
run: echo SANITIZED_PLATFORM="$(echo "${{ "{{ matrix.platform }}" }}" | sed 's/\//_/g')" | tee -a "${GITHUB_ENV}"
103103
- name: Upload SBOM artifacts
104-
uses: actions/upload-artifact@v4
104+
uses: actions/upload-artifact@v5
105105
with:
106106
name: sbom-${{ "{{ env.SANITIZED_PLATFORM }}" }}
107107
path: |
@@ -112,7 +112,7 @@ jobs:
112112
env:
113113
PLATFORM: ${{ "{{ matrix.platform }}" }}
114114
- name: Upload license check results
115-
uses: actions/upload-artifact@v4
115+
uses: actions/upload-artifact@v5
116116
with:
117117
name: license-check-${{ "{{ env.SANITIZED_PLATFORM }}" }}
118118
path: license-check.*.json
@@ -122,7 +122,7 @@ jobs:
122122
env:
123123
PLATFORM: ${{ "{{ matrix.platform }}" }}
124124
- name: Upload vulnerability scan results
125-
uses: actions/upload-artifact@v4
125+
uses: actions/upload-artifact@v5
126126
with:
127127
name: vulns-${{ "{{ env.SANITIZED_PLATFORM }}" }}
128128
path: vulns.*.json

{{cookiecutter.project_name|replace(" ", "")}}/.github/workflows/commit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
- name: Set env var for unique artifact uploads
7777
run: echo SANITIZED_PLATFORM="$(echo "${{ "{{ matrix.platform }}" }}" | sed 's/\//_/g')" | tee -a "${GITHUB_ENV}"
7878
- name: Upload SBOM artifacts
79-
uses: actions/upload-artifact@v4
79+
uses: actions/upload-artifact@v5
8080
with:
8181
name: sbom-${{ "{{ env.SANITIZED_PLATFORM }}" }}
8282
path: |
@@ -87,7 +87,7 @@ jobs:
8787
env:
8888
PLATFORM: ${{ "{{ matrix.platform }}" }}
8989
- name: Upload license check results
90-
uses: actions/upload-artifact@v4
90+
uses: actions/upload-artifact@v5
9191
with:
9292
name: license-check-${{ "{{ env.SANITIZED_PLATFORM }}" }}
9393
path: license-check.*.json
@@ -97,7 +97,7 @@ jobs:
9797
env:
9898
PLATFORM: ${{ "{{ matrix.platform }}" }}
9999
- name: Upload vulnerability scan results
100-
uses: actions/upload-artifact@v4
100+
uses: actions/upload-artifact@v5
101101
with:
102102
name: vulns-${{ "{{ env.SANITIZED_PLATFORM }}" }}
103103
path: vulns.*.json

0 commit comments

Comments
 (0)