Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update README to use the v1.0.1 release #54

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Currently, [Azure Key Vault plugin for Notation](https://github.com/Azure/notati

```yaml
- name: setup Notation CLI
uses: notaryproject/notation-action/setup@v1
uses: notaryproject/notation-action/setup@v1.0.1
with:
version: <version_of_official_Notation_CLI_release>
url: <url_of_customized_Notation_CLI>
Expand All @@ -34,7 +34,7 @@ Currently, [Azure Key Vault plugin for Notation](https://github.com/Azure/notati

```yaml
- name: setup Notation CLI
uses: notaryproject/notation-action/setup@v1
uses: notaryproject/notation-action/setup@v1.0.1
with:
version: "1.1.0"
```
Expand All @@ -45,7 +45,7 @@ Currently, [Azure Key Vault plugin for Notation](https://github.com/Azure/notati

```yaml
- name: sign releasd artifact with signing plugin
uses: notaryproject/notation-action/sign@v1
uses: notaryproject/notation-action/sign@v1.0.1
with:
plugin_name: <notation_signing_plugin_name>
plugin_url: <plugin_download_url>
Expand All @@ -63,7 +63,7 @@ Currently, [Azure Key Vault plugin for Notation](https://github.com/Azure/notati

```yaml
- name: sign releasd artifact with notation-azure-kv plugin
uses: notaryproject/notation-action/sign@v1
uses: notaryproject/notation-action/sign@v1.0.1
with:
plugin_name: azure-kv
plugin_url: https://github.com/Azure/notation-azure-kv/releases/download/v1.0.1/notation-azure-kv_1.0.1_linux_amd64.tar.gz
Expand All @@ -80,7 +80,7 @@ Example of using the [Referrers API](https://github.com/opencontainers/distribut

```yaml
- name: sign releasd artifact with notation-azure-kv plugin
uses: notaryproject/notation-action/sign@v1
uses: notaryproject/notation-action/sign@v1.0.1
env:
NOTATION_EXPERIMENTAL: 1 # this is required by Notation to use Referrers API
with:
Expand All @@ -102,7 +102,7 @@ Example of using the [Referrers API](https://github.com/opencontainers/distribut

```yaml
- name: verify released artifact
uses: notaryproject/notation-action/verify@v1
uses: notaryproject/notation-action/verify@v1.0.1
with:
target_artifact_reference: <target_artifact_reference_in_remote_registry>
trust_policy: <file_path_to_user_defined_trustpolicy.json>
Expand All @@ -116,7 +116,7 @@ Example of using the [Referrers API](https://github.com/opencontainers/distribut

```yaml
- name: verify released artifact
uses: notaryproject/notation-action/verify@v1
uses: notaryproject/notation-action/verify@v1.0.1
with:
target_artifact_reference: myRegistry.azurecr.io/myRepo@sha256:aaabbb
trust_policy: .github/trustpolicy/trustpolicy.json
Expand Down Expand Up @@ -144,7 +144,7 @@ Example of using the [Referrers API](https://github.com/opencontainers/distribut

```yaml
- name: verify released artifact
uses: notaryproject/notation-action/verify@v1
uses: notaryproject/notation-action/verify@v1.0.1
env:
NOTATION_EXPERIMENTAL: 1 # this is required by Notation to use Referrers API
with:
Expand Down
Loading