forked from sigstore/gh-action-sigstore-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(sigstore#134): * schedule-selftest: reduce nagging --------- Signed-off-by: William Woodruff <william@trailofbits.com> (sigstore#140): * requirements: sigstore ~3.0 * selftest: update filenames * action: update another path * action: remove deprecated settings * README: remove old docs --------- Signed-off-by: William Woodruff <william@trailofbits.com> (sigstore#145): * action: use a venv to prevent PEP 668 errors * action: use sys.executable * fight with Windows * setup: minimum Python is 3.8 (This has been true for a while) --------- Signed-off-by: William Woodruff <william@trailofbits.com> (sigstore#142): * action: flip `release-signing-artifacts` --------- Signed-off-by: William Woodruff <william@trailofbits.com> (sigstore#146): * action: remove old output settings * selftest: remove old test ref --------- Signed-off-by: William Woodruff <william@trailofbits.com> Cleanup workflows (sigstore#148): * Workflows: remove default input arg from action call * workflows: Remove unnecessary selftest release-signing-artifacts defaults to "true" so the removed test now duplicates the previous test. We could try testing the release-signing-artifacts == "false" but that's a bit trickier since it could only be done in a release event... * workflows: Drop recently removed job from needs-list --------- Signed-off-by: Jussi Kukkonen <jkukkonen@google.com> Prep 3.0.0 (sigstore#143): --------- Signed-off-by: William Woodruff <william@trailofbits.com> (sigstore#152): * build(deps): bump peter-evans/create-issue-from-file from 5.0.0 to 5.0.1 in the actions group --------- Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> (sigstore#154): * Fix remaining reference to 2.1.1 in README --------- Signed-off-by: Stefanie Molin <24376333+stefmolin@users.noreply.github.com> (sigstore#151): * Enable debugging also if ACTIONS_STEP_DEBUG==true --------- Co-authored-by: rindeal <dev.rindeal@gmail.com> Co-authored-by: William Woodruff <william@trailofbits.com> Upgrade Dependencies: * Update requirements.txt - upgrade sigstore 3.1, upgrade requests 2.32 --------- Signed-off-by: DK96-OS <69859316+DK96-OS@users.noreply.github.com>
- Loading branch information
Showing
8 changed files
with
153 additions
and
307 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,4 +23,3 @@ jobs: | |
id: sigstore-python | ||
with: | ||
inputs: action.yml action.py | ||
release-signing-artifacts: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# Changelog | ||
|
||
All notable changes to `gh-action-sigstore-python` will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). | ||
|
||
All versions prior to 3.0.0 are untracked. | ||
|
||
## [Unreleased] | ||
|
||
## [3.0.0] | ||
|
||
### Added | ||
|
||
* `inputs` now allows recursive globbing with `**` | ||
([#106](https://github.com/sigstore/gh-action-sigstore-python/pull/106)) | ||
|
||
### Removed | ||
|
||
* The following settings have been removed: `fulcio-url`, `rekor-url`, | ||
`ctfe`, `rekor-root-pubkey` | ||
([#140](https://github.com/sigstore/gh-action-sigstore-python/pull/140)) | ||
* The following output settings have been removed: `signature`, | ||
`certificate`, `bundle` | ||
([#146](https://github.com/sigstore/gh-action-sigstore-python/pull/146)) | ||
|
||
|
||
### Changed | ||
|
||
* `inputs` is now parsed according to POSIX shell lexing rules, improving | ||
the action's consistency when used with filenames containing whitespace | ||
or other significant characters | ||
([#104](https://github.com/sigstore/gh-action-sigstore-python/pull/104)) | ||
|
||
* `inputs` is now optional *if* `release-signing-artifacts` is true | ||
*and* the action's event is a `release` event. In this case, the action | ||
takes no explicit inputs, but signs the source archives already attached | ||
to the associated release | ||
([#110](https://github.com/sigstore/gh-action-sigstore-python/pull/110)) | ||
|
||
* The default suffix has changed from `.sigstore` to `.sigstore.json`, | ||
per Sigstore's client specification | ||
([#140](https://github.com/sigstore/gh-action-sigstore-python/pull/140)) | ||
|
||
* `release-signing-artifacts` now defaults to `true` | ||
([#142](https://github.com/sigstore/gh-action-sigstore-python/pull/142)) | ||
|
||
### Fixed | ||
|
||
* The `release-signing-artifacts` setting no longer causes a hard error | ||
when used under the incorrect event | ||
([#103](https://github.com/sigstore/gh-action-sigstore-python/pull/103)) | ||
|
||
* Various deprecations present in `sigstore-python`'s 2.x series have been | ||
resolved | ||
([#140](https://github.com/sigstore/gh-action-sigstore-python/pull/140)) | ||
|
||
* This workflow now supports CI runners that use PEP 668 to constrain global | ||
package prefixes | ||
([#145](https://github.com/sigstore/gh-action-sigstore-python/pull/145)) | ||
|
||
|
||
[Unreleased]: https://github.com/sigstore/gh-action-sigstore-python/compare/v3.0.0...HEAD | ||
[3.0.0]: https://github.com/sigstore/gh-action-sigstore-python/compare/v2.1.1...v3.0.0 |
Oops, something went wrong.