Skip to content

Commit b6fee73

Browse files
author
Patrick Zheng
authored
bump: upgraded to use Notation v1.3.1 by default (#108)
Signed-off-by: Patrick Zheng <patrickzheng@microsoft.com>
1 parent 46a91c1 commit b6fee73

61 files changed

Lines changed: 1264 additions & 1898 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/e2e-test-setup.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ jobs:
4343
- name: Setup Notation using URL
4444
uses: ./setup
4545
with:
46-
url: https://github.com/notaryproject/notation/releases/download/v1.3.0/notation_1.3.0_linux_amd64.tar.gz
47-
checksum: 6de64e5d0d637d2f0b743c577bd70b8c6654b43863c29ab4aea99dd72f3ccdc1
46+
url: https://github.com/notaryproject/notation/releases/download/v1.3.1/notation_1.3.1_linux_amd64.tar.gz
47+
checksum: f4d34390f4ba94324eb2344a25eb039e830d60f526d4c380576d578ed2636b12
4848

4949
- name: Setup Notation using URL without checksum
5050
id: no-checksum
5151
continue-on-error: true
5252
uses: ./setup
5353
with:
54-
url: https://github.com/notaryproject/notation/releases/download/v1.3.0/notation_1.3.0_linux_amd64.tar.gz
54+
url: https://github.com/notaryproject/notation/releases/download/v1.3.1/notation_1.3.1_linux_amd64.tar.gz
5555
- name: 'Should Fail: Setup Notation using URL without checksum'
5656
if: steps.no-checksum.outcome != 'failure'
5757
run: |
@@ -63,7 +63,7 @@ jobs:
6363
continue-on-error: true
6464
uses: ./setup
6565
with:
66-
url: https://github.com/notaryproject/notation/releases/download/v1.3.0/notation_1.3.0_linux_amd64.tar.gz
66+
url: https://github.com/notaryproject/notation/releases/download/v1.3.1/notation_1.3.1_linux_amd64.tar.gz
6767
checksum: abcedf
6868
- name: 'Should Fail: Setup Notation using URL and invalid checksum'
6969
if: steps.invalid-checksum.outcome != 'failure'

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Currently, [Azure Key Vault plugin for Notation](https://github.com/Azure/notati
3636
- name: setup Notation CLI
3737
uses: notaryproject/notation-action/setup@v1
3838
with:
39-
version: "1.3.0"
39+
version: "1.3.1"
4040
```
4141
4242
</details>

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ inputs:
2020
version:
2121
description: version of official Notation CLI [release](https://github.com/notaryproject/notation/releases). This field is ignored if 'url' is present.
2222
required: false
23-
default: "1.3.0"
23+
default: "1.3.1"
2424
url:
2525
description: url of customized Notation CLI to install
2626
required: false

dist/lib/data/notation_releases.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,32 @@
11
{
2+
"1.3.1": {
3+
"darwin": {
4+
"amd64": {
5+
"checksum": "64bc3f07ec41f48cb65c90849c960ffc8a9d8923b74c45469703c19ce22b18e5",
6+
"url": "https://github.com/notaryproject/notation/releases/download/v1.3.1/notation_1.3.1_darwin_amd64.tar.gz"
7+
},
8+
"arm64": {
9+
"checksum": "8b89e2d318b5db1cbbbc846145ad7cdc7c725a321bec58876e6a50db8f262e29",
10+
"url": "https://github.com/notaryproject/notation/releases/download/v1.3.1/notation_1.3.1_darwin_arm64.tar.gz"
11+
}
12+
},
13+
"linux": {
14+
"amd64": {
15+
"checksum": "f4d34390f4ba94324eb2344a25eb039e830d60f526d4c380576d578ed2636b12",
16+
"url": "https://github.com/notaryproject/notation/releases/download/v1.3.1/notation_1.3.1_linux_amd64.tar.gz"
17+
},
18+
"arm64": {
19+
"checksum": "e977074e9f769e27f144cc9737095a6e0943754868d7f89cae956be7e0df262f",
20+
"url": "https://github.com/notaryproject/notation/releases/download/v1.3.1/notation_1.3.1_linux_arm64.tar.gz"
21+
}
22+
},
23+
"windows": {
24+
"amd64": {
25+
"checksum": "ee04c9d9dfce9885e0a9966e1e2203c2c8ab5329113a72e3679b507b8ecec982",
26+
"url": "https://github.com/notaryproject/notation/releases/download/v1.3.1/notation_1.3.1_windows_amd64.zip"
27+
}
28+
}
29+
},
230
"1.3.0": {
331
"darwin": {
432
"amd64": {

node_modules/.package-lock.json

Lines changed: 14 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/tool-cache/lib/manifest.js

Lines changed: 10 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/tool-cache/lib/manifest.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/tool-cache/lib/retry-helper.js

Lines changed: 6 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/@actions/tool-cache/lib/retry-helper.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)