Skip to content

Commit 8b8696e

Browse files
author
Devdutt Shenoi
authored
Merge branch 'main' into refactor
2 parents babb3c1 + 5cff0f9 commit 8b8696e

File tree

8 files changed

+88
-57
lines changed

8 files changed

+88
-57
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
permissions:
1818
id-token: write
19-
contents: read
19+
contents: write
2020
attestations: write
2121
strategy:
2222
fail-fast: false
@@ -67,7 +67,7 @@ jobs:
6767
runs-on: windows-latest
6868
permissions:
6969
id-token: write
70-
contents: read
70+
contents: write
7171
attestations: write
7272
steps:
7373
- name: Checkout
@@ -112,7 +112,7 @@ jobs:
112112
runs-on: macos-latest
113113
permissions:
114114
id-token: write
115-
contents: read
115+
contents: write
116116
attestations: write
117117
strategy:
118118
matrix:

Cargo.lock

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

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,14 @@ Traditionally, logging has been seen as a text search problem. Log volumes were
121121

122122
But with log data growing exponentially, today's log data challenges involve whole lot more – Data ingestion, storage, and observation, all at scale. We are building Parseable to address these challenges.
123123

124+
## Verify Image Build Provenance Attestation
125+
All the image builds/pushes are attested for build provenance and integrity using the [attest-build-provenance](https://github.com/actions/attest-build-provenance) action. The attestations can be verified by having the latest version of [GitHub CLI](https://github.com/cli/cli/releases/latest) installed in your system. Then, execute the following command:
126+
127+
```sh
128+
gh attestation verify PATH/TO/YOUR/PARSEABLE/ARTIFACT-BINARY -R parseablehq/parseable
129+
```
130+
131+
124132
## Contributing :trophy:
125133

126134
<a href="https://github.com/parseablehq/parseable/graphs/contributors"><img src="https://contrib.rocks/image?repo=parseablehq/parseable" /></a>

helm-releases/parseable-1.6.2.tgz

47.7 KB
Binary file not shown.

helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: parseable
33
description: Helm chart for Parseable Server
44
type: application
5-
version: 1.6.1
6-
appVersion: "v1.6.1"
5+
version: 1.6.2
6+
appVersion: "v1.6.2"
77
maintainers:
88
- name: Parseable Team
99

helm/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
parseable:
22
image:
33
repository: containers.parseable.com/parseable/parseable
4-
tag: v1.6.1
4+
tag: v1.6.2
55
pullPolicy: Always
66
## object store can be local, s3 or blob.
77
## local needs to be false if set to object store.

0 commit comments

Comments
 (0)