Skip to content

Commit 212a976

Browse files
authored
docs: update GH Action versions in docs (#573)
1 parent 0460184 commit 212a976

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ workflows.
1111

1212
| Action | Use | Description |
1313
| :------------ | :------------------------------- | :----------------------------------------------------------------------------------------------------------------------------------- |
14-
| `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) |
15-
| `setup` | `asdf-vm/actions/setup@v2` | Only install `asdf` CLI. |
16-
| `plugins-add` | `asdf-vm/actions/plugins-add@v2` | Only install plugins, not tools. |
17-
| `plugin-test` | `asdf-vm/actions/plugin-test@v2` | Plugin author test automation. |
14+
| `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) |
15+
| `setup` | `asdf-vm/actions/setup@v3` | Only install `asdf` CLI. |
16+
| `plugins-add` | `asdf-vm/actions/plugins-add@v3` | Only install plugins, not tools. |
17+
| `plugin-test` | `asdf-vm/actions/plugin-test@v3` | Plugin author test automation. |
1818

1919
<!-- TOC -->
2020
* [Usage](#usage)
@@ -34,7 +34,7 @@ workflows.
3434
```yaml
3535
steps:
3636
- name: Install asdf & tools
37-
uses: asdf-vm/actions/install@v2
37+
uses: asdf-vm/actions/install@v3
3838
```
3939
4040
To avoid breaking changes, use the full [Semantic Version](https://semver.org/)
@@ -45,9 +45,9 @@ steps:
4545
# Reference a specific commit (most strict, for the supply-chain paranoid)
4646
- uses: asdf-vm/actions/install@f4acd427436df623426c29f7e3e9ea715be28396
4747
# Reference a semver major version only (GitHub recommended)
48-
- uses: asdf-vm/actions/install@v2
48+
- uses: asdf-vm/actions/install@v3
4949
# Reference a semver version of a release (recommended)
50-
- uses: asdf-vm/actions/install@v2.2.0
50+
- uses: asdf-vm/actions/install@v3.0.2
5151
# Reference a branch (most dangerous)
5252
- uses: asdf-vm/actions/install@master
5353
```
@@ -76,7 +76,7 @@ Installs `asdf` & tools in `.tool-versions`. Plugins fetched from
7676

7777
```yaml
7878
steps:
79-
- uses: asdf-vm/actions/install@v2
79+
- uses: asdf-vm/actions/install@v3
8080
```
8181

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

9090
```yaml
9191
steps:
92-
- uses: asdf-vm/actions/plugin-test@v2
92+
- uses: asdf-vm/actions/plugin-test@v3
9393
with:
9494
command: my_tool --version
9595
```
@@ -107,7 +107,7 @@ Only install `asdf` CLI.
107107

108108
```yaml
109109
steps:
110-
- uses: asdf-vm/actions/setup@v2
110+
- uses: asdf-vm/actions/setup@v3
111111
```
112112

113113
<!-- TODO(jthegedus): capture action.yml options in a markdown table here. Show usage examples for each option. -->
@@ -123,7 +123,7 @@ Only install plugins, not tools.
123123

124124
```yaml
125125
steps:
126-
- uses: asdf-vm/actions/plugins-add@v2
126+
- uses: asdf-vm/actions/plugins-add@v3
127127
```
128128

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

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

@@ -160,7 +160,7 @@ jobs:
160160
runs-on: ubuntu-latest
161161
steps:
162162
- uses: actions/checkout@v3
163-
- uses: asdf-vm/actions/install@v2
163+
- uses: asdf-vm/actions/install@v3
164164
- run: scripts/lint.bash
165165
# script runs Shellcheck, Shfmt etc installed by previous action
166166
@@ -197,7 +197,7 @@ jobs:
197197
image: ${{ matrix.container }}
198198
199199
steps:
200-
- uses: asdf-vm/actions/plugin-test@v2
200+
- uses: asdf-vm/actions/plugin-test@v3
201201
with:
202202
command: my_tool --version
203203
```

0 commit comments

Comments
 (0)