pin public key used for verification #363
Workflow file for this run
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
name: test-cosign | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
test_cosign_action: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
permissions: {} | |
name: Install Cosign and test presence in path | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Install Cosign | |
uses: ./ | |
- name: Check install! | |
run: cosign version | |
- name: Check root directory | |
run: | | |
if [[ $(git diff --stat) != '' ]]; then | |
echo 'should be clean' | |
exit 1 | |
else | |
exit 0 | |
fi | |
shell: bash | |
test_existing_release_action: | |
# this does not run on macOS as the support for multi-arch was not added yet | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
permissions: {} | |
name: Install existing release of Cosign and test presence in path | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Install Cosign | |
uses: sigstore/cosign-installer@dd6b2e2b610a11fd73dd187a43d57cc1394e35f9 # v3.0.5 | |
- name: Check install! | |
run: cosign version | |
- name: Check root directory | |
run: | | |
if [[ $(git diff --stat) != '' ]]; then | |
echo 'should be clean' | |
exit 1 | |
else | |
exit 0 | |
fi | |
test_cosign_action_custom: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
permissions: {} | |
name: Install Custom Cosign and test presence in path | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Install Cosign | |
uses: ./ | |
with: | |
cosign-release: 'v2.2.3' | |
- name: Check install! | |
run: cosign version | |
- name: Check root directory | |
run: | | |
if [[ $(git diff --stat) != '' ]]; then | |
echo 'should be clean' | |
exit 1 | |
else | |
exit 0 | |
fi | |
shell: bash | |
test_cosign_action_0_5_0: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
permissions: {} | |
name: Install Cosign v0.5.0 and test presence in path | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Install Cosign | |
uses: ./ | |
with: | |
cosign-release: 'v0.5.0' | |
- name: Check install! | |
run: cosign version | |
- name: Check root directory | |
run: | | |
if [[ $(git diff --stat) != '' ]]; then | |
echo 'should be clean' | |
exit 1 | |
else | |
exit 0 | |
fi | |
shell: bash | |
test_cosign_action_0_6_0: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
permissions: {} | |
name: Install Cosign v0.6.0 and test presence in path | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Install Cosign | |
uses: ./ | |
with: | |
cosign-release: 'v0.6.0' | |
- name: Check install! | |
run: cosign version | |
- name: Check root directory | |
run: | | |
if [[ $(git diff --stat) != '' ]]; then | |
echo 'should be clean' | |
exit 1 | |
else | |
exit 0 | |
fi | |
shell: bash | |
test_cosign_action_0_6_0_with_pre_installed_libpcsclite1_package: | |
# this test is specifically for linux and pcsclite1 dependencies | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
permissions: {} | |
name: Install Cosign v0.6.0 and test presence in path with pre installed libpcsclite1 package | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Install libpcsclite1 | |
run: | | |
sudo apt-get update -q | |
sudo apt-get install -yq libpcsclite1 | |
- name: Install Cosign | |
uses: ./ | |
with: | |
cosign-release: 'v0.6.0' | |
- name: Check install! | |
run: cosign version | |
- name: Check root directory | |
run: | | |
if [[ $(git diff --stat) != '' ]]; then | |
echo 'should be clean' | |
exit 1 | |
else | |
exit 0 | |
fi | |
test_cosign_action_wrong: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
permissions: {} | |
name: Try to install a wrong Cosign | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Install Cosign | |
uses: ./ | |
with: | |
cosign-release: 'honk' | |
continue-on-error: true | |
test_cosign_action_custom_dir: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
permissions: {} | |
name: Install Custom Cosign and test presence in path | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Install Cosign | |
uses: ./ | |
with: | |
install-dir: "$HOME/.cosigntest" | |
- name: Check install! | |
run: cosign version | |
- name: Check install dir! | |
run: | | |
[[ $(dirname "$(which cosign)") == "$HOME/.cosigntest" ]] | |
shell: bash | |
- name: Check root directory | |
run: | | |
[[ -z $(git diff --stat) ]] | |
shell: bash | |
test_cosign_action_custom_dir_root: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
permissions: {} | |
name: Install Custom Cosign and test presence in path with custom root dir | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Install Cosign | |
uses: ./ | |
with: | |
install-dir: /usr/bin | |
use-sudo: true | |
- name: Check install! | |
run: cosign version | |
- name: Check install dir! | |
run: | | |
[[ $(dirname "$(which cosign)") == /usr/bin ]] | |
shell: bash | |
- name: Check root directory | |
run: | | |
[[ -z $(git diff --stat) ]] | |
shell: bash | |
test_cosign_with_go_install: | |
permissions: {} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
- windows-latest | |
go_version: | |
- '1.21' | |
- '1.22' | |
name: Try to install cosign with go ${{ matrix.go_version }} | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1 | |
with: | |
go-version: ${{ matrix.go_version }} | |
check-latest: true | |
- name: Install Cosign | |
uses: ./ | |
with: | |
cosign-release: 'main' | |
- name: Check install! | |
run: cosign version |