Skip to content

Commit

Permalink
Merge branch 'dev' into rasswanth/update_readme
Browse files Browse the repository at this point in the history
  • Loading branch information
rasswanth-s authored Nov 13, 2023
2 parents 9a15c35 + a420fed commit a7d84a1
Show file tree
Hide file tree
Showing 38 changed files with 477 additions and 236 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.8.2-beta.48
current_version = 0.8.2-beta.59
tag = False
tag_name = {new_version}
commit = True
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/cd-syft-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:
id: cache
uses: actions/cache@v3
with:
path: scripts/k8s_dev_hash # we don't care about the file, just the key
path: /tmp/k8s_dev_hash.txt # we don't care about the file, just the key
key: k8s-dev-${{ github.sha }}
lookup-only: true

- name: Save Commit SHA
if: github.event_name == 'schedule' || github.event.inputs.check-cache == 'true'
# only for making the cache action happy
run: echo "${{ github.sha }}" > scripts/k8s_dev_hash
run: echo "${{ github.sha }}" > /tmp/k8s_dev_hash.txt

deploy-syft-dev:
needs: check-last-run
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
shell: bash
run: |
K3D_VERSION=v5.6.0
DEVSPACE_VERSION=v6.3.3
DEVSPACE_VERSION=v6.3.4
# install k3d
wget https://github.com/k3d-io/k3d/releases/download/${K3D_VERSION}/k3d-linux-amd64
Expand All @@ -152,6 +152,10 @@ jobs:
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
helm version
# install tox
python -m pip install --upgrade pip
pip install tox
export CONTAINER_REGISTRY=${{ secrets.ACR_SERVER }}
export VERSION=dev-${{github.sha}}
tox -e syft.build.helm
Expand Down
Loading

0 comments on commit a7d84a1

Please sign in to comment.