Skip to content

Commit

Permalink
Merge branch 'main' into assert-from-file
Browse files Browse the repository at this point in the history
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
  • Loading branch information
eddycharly committed Feb 22, 2024
2 parents c963724 + 5a17c8c commit c2408d3
Show file tree
Hide file tree
Showing 11 changed files with 274 additions and 277 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ body:
- v0.1.3
- v0.1.4
- v0.1.5
- v0.1.6
validations:
required: true
- type: textarea
Expand Down
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/general-question.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ body:
- v0.1.3
- v0.1.4
- v0.1.5
- v0.1.6
validations:
required: true

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload artifacts.json
uses: svenstaro/upload-release-action@1beeb572c19a9242f4361f4cee78f8e0d9aec5df # 2.7.0
uses: svenstaro/upload-release-action@04733e069f2d7f7f0b4aebc4fbdbce8613b03ccd # 2.9.0
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dist/artifacts.json
asset_name: artifacts.json
tag: ${{ github.ref }}
- name: Upload metadata.json
uses: svenstaro/upload-release-action@1beeb572c19a9242f4361f4cee78f8e0d9aec5df # 2.7.0
uses: svenstaro/upload-release-action@04733e069f2d7f7f0b4aebc4fbdbce8613b03ccd # 2.9.0
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dist/metadata.json
Expand Down
6 changes: 4 additions & 2 deletions .release-notes/main.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

Release notes for `TODO`.

<!--
## ‼️ Breaking changes ‼️

## 💫 New features 💫
Expand All @@ -15,7 +14,10 @@ Release notes for `TODO`.

## 🔧 Fixes 🔧

- Fixed report-path not being used in the `report`.
- Prevent double extension in the `report` output file.

## 📚 Docs 📚

## 🎸 Misc 🎸
-->

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ e2e-tests-ko: build-ko ## Run e2e tests from a docker container
# KIND #
########

KIND_IMAGE ?= kindest/node:v1.28.0
KIND_IMAGE ?= kindest/node:v1.29.2

.PHONY: kind-cluster
kind-cluster: $(KIND) ## Create kind cluster
Expand Down
18 changes: 9 additions & 9 deletions chainsaw.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@
class Chainsaw < Formula
desc "Declarative Kubernetes end-to-end testing."
homepage "https://kyverno.github.io/chainsaw"
version "0.1.5"
version "0.1.6"

on_macos do
if Hardware::CPU.arm?
url "https://github.com/kyverno/chainsaw/releases/download/v0.1.5/chainsaw_darwin_arm64.tar.gz"
sha256 "32585eafd75ea09288fccf94b2c5841f20f93c4cad4be336c7c3674595bffd5b"
url "https://github.com/kyverno/chainsaw/releases/download/v0.1.6/chainsaw_darwin_arm64.tar.gz"
sha256 "eff2777cc3138fbc2ebf92e76019189c2b41cbc4128ef9ce94f0a024076ddf1a"

def install
bin.install "chainsaw"
end
end
if Hardware::CPU.intel?
url "https://github.com/kyverno/chainsaw/releases/download/v0.1.5/chainsaw_darwin_amd64.tar.gz"
sha256 "dfdc86d6831ac273968713f6a9b3998268ff433ccc8ddd7d6cf8d7ae3709c43e"
url "https://github.com/kyverno/chainsaw/releases/download/v0.1.6/chainsaw_darwin_amd64.tar.gz"
sha256 "a4a0c0d058140d7657c2f675579bb002a0b66f74a3dd708318cf27e78321446d"

def install
bin.install "chainsaw"
Expand All @@ -28,16 +28,16 @@ def install

on_linux do
if Hardware::CPU.arm? && Hardware::CPU.is_64_bit?
url "https://github.com/kyverno/chainsaw/releases/download/v0.1.5/chainsaw_linux_arm64.tar.gz"
sha256 "767c9bfdeb633dae05ccaa5ae65f04889d8e35f8e15dd6ed701a5be36965f052"
url "https://github.com/kyverno/chainsaw/releases/download/v0.1.6/chainsaw_linux_arm64.tar.gz"
sha256 "42c5c86e4d0ae81aedc0be4a474029220c513b9907e351181db6d9b76c751258"

def install
bin.install "chainsaw"
end
end
if Hardware::CPU.intel?
url "https://github.com/kyverno/chainsaw/releases/download/v0.1.5/chainsaw_linux_amd64.tar.gz"
sha256 "992c152b8dd973bb779fbe30b6d8516f551a1295ecd7658eb0e64836a3ab6c6e"
url "https://github.com/kyverno/chainsaw/releases/download/v0.1.6/chainsaw_linux_amd64.tar.gz"
sha256 "dd9a386485c70d95e9d64ce2cf7c6949556b55fb642a8b603a857176ee8542c2"

def install
bin.install "chainsaw"
Expand Down
Loading

0 comments on commit c2408d3

Please sign in to comment.