Skip to content

Commit a794eb8

Browse files
author
Devdutt Shenoi
committed
Merge remote-tracking branch 'origin/main' into refactor
2 parents 608c0a2 + 8d2feb9 commit a794eb8

File tree

20 files changed

+327
-93
lines changed

20 files changed

+327
-93
lines changed

.github/workflows/release.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ jobs:
1414
build-linux:
1515
name: Build for ${{matrix.target}}
1616
runs-on: ubuntu-latest
17+
permissions:
18+
id-token: write
19+
contents: read
20+
attestations: write
1721
strategy:
1822
fail-fast: false
1923
matrix:
@@ -39,6 +43,11 @@ jobs:
3943
run: |
4044
mv target/${{ matrix.target }}/release/parseable Parseable_OSS_${{ matrix.target }}
4145
46+
- name: Generate artifact attestation
47+
uses: actions/attest-build-provenance@v1
48+
with:
49+
subject-path: Parseable_OSS_${{ matrix.target }}
50+
4251
- name: Create Artifact
4352
uses: actions/upload-artifact@v4
4453
with:
@@ -56,6 +65,10 @@ jobs:
5665

5766
build-windows:
5867
runs-on: windows-latest
68+
permissions:
69+
id-token: write
70+
contents: read
71+
attestations: write
5972
steps:
6073
- name: Checkout
6174
uses: actions/checkout@v1
@@ -75,6 +88,11 @@ jobs:
7588
run: |
7689
mv target/x86_64-pc-windows-msvc/release/PARSEABLE.exe Parseable_OSS_x86_64-pc-windows-msvc.exe
7790
91+
- name: Generate artifact attestation
92+
uses: actions/attest-build-provenance@v1
93+
with:
94+
subject-path: Parseable_OSS_x86_64-pc-windows-msvc.exe
95+
7896
- name: Create artifact for Windows
7997
uses: actions/upload-artifact@v4
8098
with:
@@ -92,6 +110,10 @@ jobs:
92110

93111
build-mac:
94112
runs-on: macos-latest
113+
permissions:
114+
id-token: write
115+
contents: read
116+
attestations: write
95117
strategy:
96118
matrix:
97119
target:
@@ -120,6 +142,11 @@ jobs:
120142
run: |
121143
mv target/${{ matrix.target }}/release/Parseable Parseable_OSS_${{ matrix.target }}
122144
145+
- name: Generate artifact attestation
146+
uses: actions/attest-build-provenance@v1
147+
with:
148+
subject-path: Parseable_OSS_${{ matrix.target }}
149+
123150
- name: Create artifact
124151
uses: actions/upload-artifact@v4
125152
with:

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.

helm-releases/parseable-1.6.1.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.0
6-
appVersion: "v1.6.0"
5+
version: 1.6.1
6+
appVersion: "v1.6.1"
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.0
4+
tag: v1.6.1
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)