Skip to content

Commit

Permalink
update bom action to use release v0.6.0
Browse files Browse the repository at this point in the history
Signed-off-by: cpanato <ctadeu@gmail.com>
  • Loading branch information
cpanato committed Jan 17, 2024
1 parent 10fecc1 commit cf42b19
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A set of GitHub actions based on the Kubernetes Release Engineering Tooling

## Installer Actions

The following actions install the Kubernetes Release Engineering tools into
The following actions install the Kubernetes Release Engineering tools into
your runner:

| Action | Description |
Expand All @@ -17,7 +17,7 @@ your runner:
## Task-specific Actions

These actions are designed to perform a task using the tools. If there is not a
task action for the tool you are looking for, you can still run it using a
task action for the tool you are looking for, you can still run it using a
`runs:` step.

| Action | Description |
Expand Down
6 changes: 3 additions & 3 deletions setup-bom/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ This action currently supports GitHub-provided Linux, macOS and Windows runners
Add the following entry to your Github workflow YAML file:

```yaml
uses: kubernetes-sigs/release-action/setup-bom@main
uses: kubernetes-sigs/release-actions/setup-bom@main
with:
bom-release: '0.5.1' # optional
bom-release: '0.6.0' # optional
```
Example using a pinned version:
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Install bom
uses: kubernetes-sigs/release-actions/setup-bom@main
with:
bom-release: '0.5.1' # optional
bom-release: '0.6.0' # optional
- name: Check install!
run: bom version
```
Expand Down
4 changes: 2 additions & 2 deletions setup-bom/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ inputs:
bom-release:
description: 'bom release version to be installed'
required: false
default: '0.5.1'
default: '0.6.0'
install-dir:
description: 'Where to install the bom binary'
required: false
Expand All @@ -41,7 +41,7 @@ runs:
use-sudo: ${{ inputs.use-sudo }}
- shell: bash
run: |
#!/bin/bash
#!/usr/bin/env bash
# bom install script
shopt -s expand_aliases
if [ -z "$NO_COLOR" ]; then
Expand Down

0 comments on commit cf42b19

Please sign in to comment.