Skip to content

Commit

Permalink
build(deps): bump k8s.io/component-base from 0.30.1 to 0.30.2 (#3320) (
Browse files Browse the repository at this point in the history
…#3293)

Bumps [k8s.io/component-base](https://github.com/kubernetes/component-base) from 0.30.1 to 0.30.2.
- [Commits](kubernetes/component-base@v0.30.1...v0.30.2)

---
updated-dependencies:
- dependency-name: k8s.io/component-base
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Per Goncalves da Silva <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
perdasilva and dependabot[bot] authored Jun 26, 2024
1 parent 75c3f58 commit b8fb628
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions .github/workflows/goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,16 @@ jobs:
go-version-file: "go.mod"

- name: Get the image tag
if: startsWith(github.ref, 'refs/tags')
run: |
# Source: https://github.community/t/how-to-get-just-the-tag-name/16241/32
if [[ $GITHUB_REF == refs/tags/* ]]; then
echo IMAGE_TAG="${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
else
echo IMAGE_TAG="snapshot" >> $GITHUB_ENV
fi
# TODO dtfranz
# This action uses node12 and the source repo is archived;
# we should remove it or find a suitable replacement before it becomes a blocker.
- name: Create a draft release
uses: actions/create-release@v1
uses: softprops/action-gh-release@v2
id: release
if: startsWith(github.ref, 'refs/tags')
env:
Expand All @@ -42,7 +40,6 @@ jobs:

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
if: startsWith(github.ref, 'refs/tags')

- name: Docker Login
uses: docker/login-action@v3
Expand All @@ -54,17 +51,15 @@ jobs:

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
if: startsWith(github.ref, 'refs/tags')
with:
version: 0.177.0
args: release --rm-dist
args: release --rm-dist ${{ github.event_name == 'pull_request' && '--snapshot' || '' }}
env:
GITHUB_TOKEN: ${{ github.token }}
IMAGE_REPO: quay.io/operator-framework/olm
PKG: github.com/operator-framework/operator-lifecycle-manager

- name: Generate quickstart release manifests
if: startsWith(github.ref, 'refs/tags')
run: make release ver=${{ env.IMAGE_TAG }} IMAGE_REPO=quay.io/operator-framework/olm

- name: Update release artifacts with rendered Kubernetes release manifests
Expand Down

0 comments on commit b8fb628

Please sign in to comment.