From f8887d83348e9df270c244afb8eb12c54a631f1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Guilherme=20Vanz?= Date: Mon, 1 Jul 2024 11:24:53 -0300 Subject: [PATCH] chore: bump version in use to v3.3.0. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updates the version used in the Github action by the version to be released soon. Signed-off-by: José Guilherme Vanz --- .../reusable-release-policy-assemblyscript.yml | 8 ++++---- .github/workflows/reusable-release-policy-go.yml | 10 +++++----- .github/workflows/reusable-release-policy-rego.yml | 10 +++++----- .github/workflows/reusable-release-policy-rust.yml | 10 +++++----- .github/workflows/reusable-release-policy-swift.yml | 8 ++++---- .../workflows/reusable-test-policy-assemblyscript.yml | 4 ++-- .github/workflows/reusable-test-policy-go.yml | 8 ++++---- .github/workflows/reusable-test-policy-rego.yml | 6 +++--- .github/workflows/reusable-test-policy-rust.yml | 4 ++-- .github/workflows/reusable-test-policy-swift.yml | 4 ++-- policy-gh-action-dependencies/action.yml | 6 +++--- 11 files changed, 39 insertions(+), 39 deletions(-) diff --git a/.github/workflows/reusable-release-policy-assemblyscript.yml b/.github/workflows/reusable-release-policy-assemblyscript.yml index 539147d..e83f30e 100644 --- a/.github/workflows/reusable-release-policy-assemblyscript.yml +++ b/.github/workflows/reusable-release-policy-assemblyscript.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Install dependencies - uses: kubewarden/github-actions/policy-gh-action-dependencies@v3.2.0 + uses: kubewarden/github-actions/policy-gh-action-dependencies@v3.3.0 - uses: actions/checkout@v4 with: @@ -37,7 +37,7 @@ jobs: name: Check that artifacthub-pkg.yml is up-to-date # skip when releasing :latest from main, versions will not match if: startsWith(github.ref, 'refs/tags/v') && inputs.artifacthub - uses: kubewarden/github-actions/check-artifacthub@v3.2.0 + uses: kubewarden/github-actions/check-artifacthub@v3.3.0 with: version: ${{ steps.calculate-version.outputs.version }} - @@ -68,7 +68,7 @@ jobs: make e2e-tests - name: Release - uses: kubewarden/github-actions/policy-release@v3.2.0 + uses: kubewarden/github-actions/policy-release@v3.3.0 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} oci-target: ${{ inputs.oci-target }} @@ -84,4 +84,4 @@ jobs: steps: - name: Push artifacthub files to artifacthub branch - uses: kubewarden/github-actions/push-artifacthub@v3.2.0 + uses: kubewarden/github-actions/push-artifacthub@v3.3.0 diff --git a/.github/workflows/reusable-release-policy-go.yml b/.github/workflows/reusable-release-policy-go.yml index 9554130..9572fb5 100644 --- a/.github/workflows/reusable-release-policy-go.yml +++ b/.github/workflows/reusable-release-policy-go.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Install dependencies - uses: kubewarden/github-actions/policy-gh-action-dependencies@v3.2.0 + uses: kubewarden/github-actions/policy-gh-action-dependencies@v3.3.0 - uses: actions/checkout@v4 with: @@ -35,19 +35,19 @@ jobs: name: Check that artifacthub-pkg.yml is up-to-date # skip when releasing :latest from main, versions will not match if: startsWith(github.ref, 'refs/tags/v') && inputs.artifacthub - uses: kubewarden/github-actions/check-artifacthub@v3.2.0 + uses: kubewarden/github-actions/check-artifacthub@v3.3.0 with: version: ${{ steps.calculate-version.outputs.version }} - name: Build and annotate policy - uses: kubewarden/github-actions/policy-build-go@v3.2.0 + uses: kubewarden/github-actions/policy-build-go@v3.3.0 - name: Run e2e tests run: | make e2e-tests - name: Release - uses: kubewarden/github-actions/policy-release@v3.2.0 + uses: kubewarden/github-actions/policy-release@v3.3.0 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} oci-target: ${{ inputs.oci-target }} @@ -63,4 +63,4 @@ jobs: steps: - name: Push artifacthub files to artifacthub branch - uses: kubewarden/github-actions/push-artifacthub@v3.2.0 + uses: kubewarden/github-actions/push-artifacthub@v3.3.0 diff --git a/.github/workflows/reusable-release-policy-rego.yml b/.github/workflows/reusable-release-policy-rego.yml index efa9cdc..5310345 100644 --- a/.github/workflows/reusable-release-policy-rego.yml +++ b/.github/workflows/reusable-release-policy-rego.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Install dependencies - uses: kubewarden/github-actions/policy-gh-action-dependencies@v3.2.0 + uses: kubewarden/github-actions/policy-gh-action-dependencies@v3.3.0 - uses: actions/checkout@v4 with: @@ -35,12 +35,12 @@ jobs: name: Check that artifacthub-pkg.yml is up-to-date # skip when releasing :latest from main, versions will not match if: startsWith(github.ref, 'refs/tags/v') && inputs.artifacthub - uses: kubewarden/github-actions/check-artifacthub@v3.2.0 + uses: kubewarden/github-actions/check-artifacthub@v3.3.0 with: version: ${{ steps.calculate-version.outputs.version }} - name: Install opa - uses: kubewarden/github-actions/opa-installer@v3.2.0 + uses: kubewarden/github-actions/opa-installer@v3.3.0 - uses: actions/checkout@v4 - @@ -57,7 +57,7 @@ jobs: make e2e-tests - name: Release - uses: kubewarden/github-actions/policy-release@v3.2.0 + uses: kubewarden/github-actions/policy-release@v3.3.0 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} oci-target: ${{ inputs.oci-target }} @@ -73,4 +73,4 @@ jobs: steps: - name: Push artifacthub files to artifacthub branch - uses: kubewarden/github-actions/push-artifacthub@v3.2.0 + uses: kubewarden/github-actions/push-artifacthub@v3.3.0 diff --git a/.github/workflows/reusable-release-policy-rust.yml b/.github/workflows/reusable-release-policy-rust.yml index ea0b8fb..251aa6a 100644 --- a/.github/workflows/reusable-release-policy-rust.yml +++ b/.github/workflows/reusable-release-policy-rust.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Install dependencies - uses: kubewarden/github-actions/policy-gh-action-dependencies@v3.2.0 + uses: kubewarden/github-actions/policy-gh-action-dependencies@v3.3.0 - uses: actions/checkout@v4 with: @@ -34,19 +34,19 @@ jobs: name: Check that artifacthub-pkg.yml is up-to-date # skip when releasing :latest from main, versions will not match if: startsWith(github.ref, 'refs/tags/v') && inputs.artifacthub - uses: kubewarden/github-actions/check-artifacthub@v3.2.0 + uses: kubewarden/github-actions/check-artifacthub@v3.3.0 with: version: ${{ steps.calculate-version.outputs.version }} - name: Build and annotate policy - uses: kubewarden/github-actions/policy-build-rust@v3.2.0 + uses: kubewarden/github-actions/policy-build-rust@v3.3.0 - name: Run e2e tests run: | make e2e-tests - name: Release - uses: kubewarden/github-actions/policy-release@v3.2.0 + uses: kubewarden/github-actions/policy-release@v3.3.0 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} oci-target: ${{ inputs.oci-target }} @@ -62,4 +62,4 @@ jobs: steps: - name: Push artifacthub files to artifacthub branch - uses: kubewarden/github-actions/push-artifacthub@v3.2.0 + uses: kubewarden/github-actions/push-artifacthub@v3.3.0 diff --git a/.github/workflows/reusable-release-policy-swift.yml b/.github/workflows/reusable-release-policy-swift.yml index 9d6e887..c1b148e 100644 --- a/.github/workflows/reusable-release-policy-swift.yml +++ b/.github/workflows/reusable-release-policy-swift.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Install dependencies - uses: kubewarden/github-actions/policy-gh-action-dependencies@v3.2.0 + uses: kubewarden/github-actions/policy-gh-action-dependencies@v3.3.0 - uses: actions/checkout@v4 with: @@ -35,7 +35,7 @@ jobs: name: Check that artifacthub-pkg.yml is up-to-date # skip when releasing :latest from main, versions will not match if: startsWith(github.ref, 'refs/tags/v') && inputs.artifacthub - uses: kubewarden/github-actions/check-artifacthub@v3.2.0 + uses: kubewarden/github-actions/check-artifacthub@v3.3.0 with: version: ${{ steps.calculate-version.outputs.version }} - @@ -67,7 +67,7 @@ jobs: make e2e-tests - name: Release - uses: kubewarden/github-actions/policy-release@v3.2.0 + uses: kubewarden/github-actions/policy-release@v3.3.0 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} oci-target: ${{ inputs.oci-target }} @@ -83,4 +83,4 @@ jobs: steps: - name: Push artifacthub files to artifacthub branch - uses: kubewarden/github-actions/push-artifacthub@v3.2.0 + uses: kubewarden/github-actions/push-artifacthub@v3.3.0 diff --git a/.github/workflows/reusable-test-policy-assemblyscript.yml b/.github/workflows/reusable-test-policy-assemblyscript.yml index f39ea38..5026d8e 100644 --- a/.github/workflows/reusable-test-policy-assemblyscript.yml +++ b/.github/workflows/reusable-test-policy-assemblyscript.yml @@ -41,14 +41,14 @@ jobs: fetch-depth: 0 - name: Install kwctl - uses: kubewarden/github-actions/kwctl-installer@v3.2.0 + uses: kubewarden/github-actions/kwctl-installer@v3.3.0 - id: calculate-version run: echo "version=$(git describe --tags --abbrev=0 | cut -c2-)" >> $GITHUB_OUTPUT shell: bash - name: Check that artifacthub-pkg.yml is up-to-date - uses: kubewarden/github-actions/check-artifacthub@v3.2.0 + uses: kubewarden/github-actions/check-artifacthub@v3.3.0 with: version: ${{ steps.calculate-version.outputs.version }} check_version: false # must match a git tag that hasn't been created yet, so let's ignore until then diff --git a/.github/workflows/reusable-test-policy-go.yml b/.github/workflows/reusable-test-policy-go.yml index 9c23fe7..e4759a1 100644 --- a/.github/workflows/reusable-test-policy-go.yml +++ b/.github/workflows/reusable-test-policy-go.yml @@ -29,11 +29,11 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install dependencies - uses: kubewarden/github-actions/policy-gh-action-dependencies@v3.2.0 + uses: kubewarden/github-actions/policy-gh-action-dependencies@v3.3.0 - name: Build and annotate policy with: generate-sbom: false - uses: kubewarden/github-actions/policy-build-go@v3.2.0 + uses: kubewarden/github-actions/policy-build-go@v3.3.0 - name: Run e2e tests run: make e2e-tests @@ -58,12 +58,12 @@ jobs: # until https://github.com/actions/checkout/pull/579 is released fetch-depth: 0 - name: Install kwctl - uses: kubewarden/github-actions/kwctl-installer@v3.2.0 + uses: kubewarden/github-actions/kwctl-installer@v3.3.0 - id: calculate-version run: echo "version=$(git describe --tags --abbrev=0 | cut -c2-)" >> $GITHUB_OUTPUT shell: bash - name: Check that artifacthub-pkg.yml is up-to-date - uses: kubewarden/github-actions/check-artifacthub@v3.2.0 + uses: kubewarden/github-actions/check-artifacthub@v3.3.0 with: version: ${{ steps.calculate-version.outputs.version }} check_version: false # must match a git tag that hasn't been created yet, so let's ignore until then diff --git a/.github/workflows/reusable-test-policy-rego.yml b/.github/workflows/reusable-test-policy-rego.yml index 88a140e..672b7ec 100644 --- a/.github/workflows/reusable-test-policy-rego.yml +++ b/.github/workflows/reusable-test-policy-rego.yml @@ -18,7 +18,7 @@ jobs: uses: actions/checkout@v4 - name: Install opa - uses: kubewarden/github-actions/opa-installer@v3.2.0 + uses: kubewarden/github-actions/opa-installer@v3.3.0 - name: Run unit tests run: make test @@ -33,14 +33,14 @@ jobs: fetch-depth: 0 - name: Install kwctl - uses: kubewarden/github-actions/kwctl-installer@v3.2.0 + uses: kubewarden/github-actions/kwctl-installer@v3.3.0 - id: calculate-version run: echo "version=$(git describe --tags --abbrev=0 | cut -c2-)" >> $GITHUB_OUTPUT shell: bash - name: Check that artifacthub-pkg.yml is up-to-date - uses: kubewarden/github-actions/check-artifacthub@v3.2.0 + uses: kubewarden/github-actions/check-artifacthub@v3.3.0 with: version: ${{ steps.calculate-version.outputs.version }} check_version: false # must match a git tag that hasn't been created yet, so let's ignore until then diff --git a/.github/workflows/reusable-test-policy-rust.yml b/.github/workflows/reusable-test-policy-rust.yml index 8b38732..42e26f9 100644 --- a/.github/workflows/reusable-test-policy-rust.yml +++ b/.github/workflows/reusable-test-policy-rust.yml @@ -37,14 +37,14 @@ jobs: fetch-depth: 0 - name: Install kwctl - uses: kubewarden/github-actions/kwctl-installer@v3.2.0 + uses: kubewarden/github-actions/kwctl-installer@v3.3.0 - id: calculate-version run: echo "version=$(sed -n 's,^version = \"\(.*\)\",\1,p' Cargo.toml)" >> $GITHUB_OUTPUT shell: bash - name: Check that artifacthub-pkg.yml is up-to-date - uses: kubewarden/github-actions/check-artifacthub@v3.2.0 + uses: kubewarden/github-actions/check-artifacthub@v3.3.0 with: version: ${{ steps.calculate-version.outputs.version }} check: diff --git a/.github/workflows/reusable-test-policy-swift.yml b/.github/workflows/reusable-test-policy-swift.yml index 6fc40e5..f65698b 100644 --- a/.github/workflows/reusable-test-policy-swift.yml +++ b/.github/workflows/reusable-test-policy-swift.yml @@ -31,14 +31,14 @@ jobs: fetch-depth: 0 - name: Install kwctl - uses: kubewarden/github-actions/kwctl-installer@v3.2.0 + uses: kubewarden/github-actions/kwctl-installer@v3.3.0 - id: calculate-version run: echo "version=$(git describe --tags --abbrev=0 | cut -c2-)" >> $GITHUB_OUTPUT shell: bash - name: Check that artifacthub-pkg.yml is up-to-date - uses: kubewarden/github-actions/check-artifacthub@v3.2.0 + uses: kubewarden/github-actions/check-artifacthub@v3.3.0 with: version: ${{ steps.calculate-version.outputs.version }} check_version: false # must match a git tag that hasn't been created yet, so let's ignore until then diff --git a/policy-gh-action-dependencies/action.yml b/policy-gh-action-dependencies/action.yml index dc0ed8a..44c7530 100644 --- a/policy-gh-action-dependencies/action.yml +++ b/policy-gh-action-dependencies/action.yml @@ -9,12 +9,12 @@ runs: - name: Install cosign uses: sigstore/cosign-installer@v3 - name: Install kwctl - uses: kubewarden/github-actions/kwctl-installer@v3.2.0 + uses: kubewarden/github-actions/kwctl-installer@v3.3.0 - name: Install bats uses: mig4/setup-bats@v1 with: bats-version: 1.8.2 - name: Install SBOM generator tool - uses: kubewarden/github-actions/sbom-generator-installer@v3.2.0 + uses: kubewarden/github-actions/sbom-generator-installer@v3.3.0 - name: Install SBOM generator tool - uses: kubewarden/github-actions/binaryen-installer@v3.2.0 + uses: kubewarden/github-actions/binaryen-installer@v3.3.0