Skip to content

Commit

Permalink
chore(master): release 3.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 10, 2024
1 parent 212a976 commit 0dae264
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 15 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## [3.0.3](https://github.com/asdf-vm/actions/compare/v3.0.2...v3.0.3) (2024-01-10)


### Documentation

* use full SHA refs as short are not supported ([#575](https://github.com/asdf-vm/actions/issues/575)) ([0460184](https://github.com/asdf-vm/actions/commit/0460184eb9fc6ee669a293c1e5f3c4fb5f52d55c))

## [3.0.2](https://github.com/asdf-vm/actions/compare/v3.0.1...v3.0.2) (2023-10-12)


Expand Down
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ workflows.

| Action | Use | Description |
| :------------ | :------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------- |
| `install` | `asdf-vm/actions/install@v3` | Installs `asdf` & tools in `.tool-versions`.<br>Plugins fetched from [asdf-vm/asdf-plugins](https://github.com/asdf-vm/asdf-plugins) |
| `setup` | `asdf-vm/actions/setup@v3` | Only install `asdf` CLI. |
| `plugins-add` | `asdf-vm/actions/plugins-add@v3` | Only install plugins, not tools. |
| `plugin-test` | `asdf-vm/actions/plugin-test@v3` | Plugin author test automation. |
| `install` | `asdf-vm/actions/install@v2` | Installs `asdf` & tools in `.tool-versions`.<br>Plugins fetched from [asdf-vm/asdf-plugins](https://github.com/asdf-vm/asdf-plugins) |
| `setup` | `asdf-vm/actions/setup@v2` | Only install `asdf` CLI. |
| `plugins-add` | `asdf-vm/actions/plugins-add@v2` | Only install plugins, not tools. |
| `plugin-test` | `asdf-vm/actions/plugin-test@v2` | Plugin author test automation. |

<!-- TOC -->
* [Usage](#usage)
Expand All @@ -34,7 +34,7 @@ workflows.
```yaml
steps:
- name: Install asdf & tools
uses: asdf-vm/actions/install@v3
uses: asdf-vm/actions/install@v2
```

To avoid breaking changes, use the full [Semantic Version](https://semver.org/)
Expand All @@ -45,9 +45,9 @@ steps:
# Reference a specific commit (most strict, for the supply-chain paranoid)
- uses: asdf-vm/actions/install@f4acd427436df623426c29f7e3e9ea715be28396
# Reference a semver major version only (GitHub recommended)
- uses: asdf-vm/actions/install@v3
- uses: asdf-vm/actions/install@v2
# Reference a semver version of a release (recommended)
- uses: asdf-vm/actions/install@v3.0.2
- uses: asdf-vm/actions/install@v2.2.0
# Reference a branch (most dangerous)
- uses: asdf-vm/actions/install@master
```
Expand Down Expand Up @@ -76,7 +76,7 @@ Installs `asdf` & tools in `.tool-versions`. Plugins fetched from

```yaml
steps:
- uses: asdf-vm/actions/install@v3
- uses: asdf-vm/actions/install@v2
```

<!-- TODO(jthegedus): capture action.yml options in a markdown table here. Show usage examples for each option. -->
Expand All @@ -89,7 +89,7 @@ Plugin author test automation

```yaml
steps:
- uses: asdf-vm/actions/plugin-test@v3
- uses: asdf-vm/actions/plugin-test@v2
with:
command: my_tool --version
```
Expand All @@ -107,7 +107,7 @@ Only install `asdf` CLI.
```yaml
steps:
- uses: asdf-vm/actions/setup@v3
- uses: asdf-vm/actions/setup@v2
```

<!-- TODO(jthegedus): capture action.yml options in a markdown table here. Show usage examples for each option. -->
Expand All @@ -123,7 +123,7 @@ Only install plugins, not tools.
```yaml
steps:
- uses: asdf-vm/actions/plugins-add@v3
- uses: asdf-vm/actions/plugins-add@v2
```

<!-- TODO(jthegedus): capture action.yml options in a markdown table here. Show usage examples for each option. -->
Expand All @@ -135,7 +135,7 @@ See [action.yml](plugins-add/action.yml) inputs.
### Full Example Workflow

This example workflow demonstrates how to use the Install Action:
`asdf-vm/actions/install@v3`. It is taken from the
`asdf-vm/actions/install@v2`. It is taken from the
[asdf-vm/asdf-plugin-template](https://github.com/asdf-vm/asdf-plugin-template)
repository.

Expand All @@ -160,7 +160,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: asdf-vm/actions/install@v3
- uses: asdf-vm/actions/install@v2
- run: scripts/lint.bash
# script runs Shellcheck, Shfmt etc installed by previous action

Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
image: ${{ matrix.container }}

steps:
- uses: asdf-vm/actions/plugin-test@v3
- uses: asdf-vm/actions/plugin-test@v2
with:
command: my_tool --version
```
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@asdf-vm/actions",
"version": "3.0.2",
"version": "3.0.3",
"description": "asdf github actions",
"repository": "https://github.com/asdf-vm/actions",
"author": "asdf Core Team (https://github.com/orgs/asdf-vm/people)",
Expand Down

0 comments on commit 0dae264

Please sign in to comment.