Skip to content

Commit 4870b9f

Browse files
authored
fix: filter tags to not include sbom/vex (#669)
* fix: filter tags to not include sbom/vex now that registries are adding artifact tags (it seems nvidia is the main one for now) we need to filter them out. Signed-off-by: vsoch <[email protected]>
1 parent 8c540f8 commit 4870b9f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+76
-64
lines changed

.github/workflows/alert-action-updates.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout Repository
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313
- name: Detect and Update
1414
uses: vsoch/action-updater@2c2216e27ee963aaa31ff0ff81de007acb84b9c2 # 0.0.11
1515
with:

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
generate-docs:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
with:
1313
ref: gh-pages
1414

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
formatting:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515

1616
- name: Setup black linter
1717
run: conda create --quiet --name black pyflakes

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-20.04
1010

1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313

1414
- name: Install
1515
run: conda create --quiet --name shpc twine

.github/workflows/test-container.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
4242
- name: Checkout
4343
if: ${{ env.keepgoing == 'true' }}
44-
uses: actions/checkout@v3
44+
uses: actions/checkout@v4
4545

4646
- name: Make Space For Build
4747
if: ${{ env.keepgoing == 'true' }}
@@ -74,7 +74,7 @@ jobs:
7474
if: ${{ env.keepgoing == 'true' }}
7575
run: conda create --quiet -c conda-forge --name shpc spython
7676

77-
- uses: actions/checkout@v3
77+
- uses: actions/checkout@v4
7878
if: ${{ env.keepgoing == 'true' }}
7979

8080
- name: Install shpc

.github/workflows/test-core.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Create conda environment
1414
run: conda create --quiet -c conda-forge --name shpc spython
1515

16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Install shpc
1818
run: |
1919
export PATH="/usr/share/miniconda/bin:$PATH"
@@ -27,4 +27,5 @@ jobs:
2727
source activate shpc
2828
which shpc
2929
cd shpc/tests
30+
export GITHUB_CI=yes
3031
pytest -sxv test_*.py

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- name: Create conda environment
5050
run: conda create --quiet -c conda-forge --name shpc spython
5151

52-
- uses: actions/checkout@v3
52+
- uses: actions/checkout@v4
5353
- name: Install shpc
5454
run: |
5555
export PATH="/usr/share/miniconda/bin:$PATH"

.github/workflows/update-contributors.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout Repository
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
- name: Tributors Update
1616
uses: con/tributors@master
1717
env:

CHANGELOG.md

Lines changed: 1 addition & 0 deletions

shpc/client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22

33
__author__ = "Vanessa Sochat"
4-
__copyright__ = "Copyright 2021-2023, Vanessa Sochat"
4+
__copyright__ = "Copyright 2021-2024, Vanessa Sochat"
55
__license__ = "MPL 2.0"
66

77
import argparse

0 commit comments

Comments
 (0)