Skip to content

Commit

Permalink
Merge branch 'main' into allowCustomTemplatingInImages
Browse files Browse the repository at this point in the history
  • Loading branch information
schristoff committed Sep 19, 2024
2 parents 60bccc6 + 8ab0430 commit a219392
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_pipelinesrelease_template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: mage build
shell: bash
- name: Publish Native Binaries
uses: actions/upload-artifact@v4.0.0
uses: actions/upload-artifact@v4.4.0
with:
name: build-bin
path: "${{ github.workspace }}/bin"
Expand All @@ -56,7 +56,7 @@ jobs:
run: mage XBuildAll
shell: bash
- name: Publish Release Binaries
uses: actions/upload-artifact@v4.0.0
uses: actions/upload-artifact@v4.4.0
with:
name: xbuild-bin
path: "${{ github.workspace }}/bin"
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
with:
go-version: ${{ inputs.goVersion }}
- name: Download Cross-Compiled Porter Binaries
uses: actions/download-artifact@v4.1.0
uses: actions/download-artifact@v4.1.8
with:
name: xbuild-bin
path: bin
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
with:
go-version: ${{ inputs.goVersion }}
- name: Download Cross-Compiled Porter Binaries
uses: actions/download-artifact@v4.1.0
uses: actions/download-artifact@v4.1.8
with:
name: xbuild-bin
path: bin
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
with:
go-version: ${{ inputs.goVersion }}
- name: Download Cross-Compiled Porter Binaries
uses: actions/download-artifact@v4.1.0
uses: actions/download-artifact@v4.1.8
with:
name: xbuild-bin
path: bin
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/porter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
fi
shell: bash
- name: Publish Native Binaries
uses: actions/upload-artifact@v3.1.1
uses: actions/upload-artifact@v4.4.0
with:
name: build-bin
path: "${{ github.workspace }}/bin"
Expand All @@ -58,7 +58,7 @@ jobs:
run: go run mage.go -v XBuildAll
shell: bash
- name: Publish Release Binaries
uses: actions/upload-artifact@v3.1.1
uses: actions/upload-artifact@v4.4.0
with:
name: xbuild-bin
path: "${{ github.workspace }}/bin"
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
cache: true
- run: go version
- name: Download Cross-Compiled Porter Binaries
uses: actions/download-artifact@v3.0.1
uses: actions/download-artifact@v4.1.8
with:
name: xbuild-bin
path: bin
Expand All @@ -129,7 +129,7 @@ jobs:
- name: checkout
uses: actions/checkout@v3.5.0
- name: Download Cross-Compiled Porter Binaries
uses: actions/download-artifact@v3.0.1
uses: actions/download-artifact@v4.1.8
with:
name: xbuild-bin
path: bin
Expand Down
6 changes: 3 additions & 3 deletions docs/content/docs/operations/signing-bundles.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ Learn how to configure Porter to sign bundles.
1. Cosign is installed and is available on the on the `PATH`.
2. A key-pair for signing is available.

Instructions on for the install Cosign can be found on the [Cosign Installation page](https://docs.sigstore.dev/system_config/installation/), and instructions on how to generate a key-pair can be found in the [Cosign Quickstart Guide](https://docs.sigstore.dev/signing/quickstart/#signing-with-a-generated-key).
Instructions on for the install Cosign can be found on the [Cosign Installation page](https://docs.sigstore.dev/cosign/system_config/installation/), and instructions on how to generate a key-pair can be found in the [Cosign Signing with Self-Managed Keys](https://docs.sigstore.dev/cosign/key_management/signing_with_self-managed_keys/).

🚧 Currently Porter does not support [Keyless Signing](https://docs.sigstore.dev/signing/overview/) or reading the key-pair from anything but files.
🚧 Currently Porter does not support [Keyless Signing](https://docs.sigstore.dev/cosign/signing/overview/) or reading the key-pair from anything but files.

### Configuration

Expand Down Expand Up @@ -100,5 +100,5 @@ To sign run [porter publish](/cli/porter_publish/) with the `--sign-bundle` flag

A bundle can be verified before installation by adding the `--verify-bundle` flag to [porter install](/cli/porter_publish/).

[Cosign]: https://docs.sigstore.dev/signing/quickstart/
[Cosign]: https://docs.sigstore.dev/quickstart/quickstart-cosign/
[Notation]: https://notaryproject.dev/docs/quickstart-guides/quickstart-sign-image-artifact/

0 comments on commit a219392

Please sign in to comment.