Skip to content

Commit c58a72f

Browse files
Fix sigstore dependency and update to v0.1.8
* Bump sigstore/gh-action-sigstore-python from 2.1.1 to 3.0.0 Bumps [sigstore/gh-action-sigstore-python](https://github.com/sigstore/gh-action-sigstore-python) from 2.1.1 to 3.0.0. - [Release notes](https://github.com/sigstore/gh-action-sigstore-python/releases) - [Changelog](https://github.com/sigstore/gh-action-sigstore-python/blob/main/CHANGELOG.md) - [Commits](sigstore/gh-action-sigstore-python@v2.1.1...v3.0.0) --- updated-dependencies: - dependency-name: sigstore/gh-action-sigstore-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * update to v0.1.8 * update to new json format --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: anishnaik <[email protected]>
1 parent 47fdfd8 commit c58a72f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: .github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
8383
- name: Sign artifact
8484
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
85-
uses: sigstore/gh-action-sigstore-python@v2.1.1
85+
uses: sigstore/gh-action-sigstore-python@v3.0.0
8686
with:
8787
inputs: ./medusa-*.tar.gz
8888

@@ -92,7 +92,7 @@ jobs:
9292
name: medusa-${{ runner.os }}-${{ runner.arch }}
9393
path: |
9494
./medusa-*.tar.gz
95-
./medusa-*.tar.gz.sigstore
95+
./medusa-*.tar.gz.sigstore.json
9696
9797
release:
9898
needs: [build]
@@ -117,7 +117,7 @@ jobs:
117117
name: "${{ github.ref_name }}"
118118
files: |
119119
./medusa-*.tar.gz
120-
./medusa-*.tar.gz.sigstore
120+
./medusa-*.tar.gz.sigstore.json
121121
122122
lint:
123123
runs-on: ubuntu-latest

Diff for: cmd/root.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"os"
88
)
99

10-
const version = "0.1.7"
10+
const version = "0.1.8"
1111

1212
// rootCmd represents the root CLI command object which all other commands stem from.
1313
var rootCmd = &cobra.Command{

0 commit comments

Comments
 (0)