Skip to content

Commit

Permalink
Bump actions/checkout from 3.0.0 to 3.0.1 (#72)
Browse files Browse the repository at this point in the history
* Bump actions/checkout from 3.0.0 to 3.0.1

Bumps [actions/checkout](https://github.com/actions/checkout) from 3.0.0 to 3.0.1.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@a12a394...dcd71f6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* commenting out the go install due exclude in cosign go.mod

Signed-off-by: cpanato <ctadeu@gmail.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: cpanato <ctadeu@gmail.com>
  • Loading branch information
dependabot[bot] and cpanato committed Apr 19, 2022
1 parent bb61838 commit f997690
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/test-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
permissions: {}
name: Install Cosign and test presence in path
steps:
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # v3
- uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # v3
- name: Install Cosign
uses: ./
- name: Check install!
Expand All @@ -35,7 +35,7 @@ jobs:
permissions: {}
name: Install existing release of Cosign and test presence in path
steps:
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 #v3
- uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 #v3
- name: Install Cosign
uses: sigstore/cosign-installer@de5c6db865c272bde755152889dbda79bccb85f7 #v1.3.0
- name: Check install!
Expand All @@ -57,7 +57,7 @@ jobs:
permissions: {}
name: Install Custom Cosign and test presence in path
steps:
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 #v3
- uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 #v3
- name: Install Cosign
uses: ./
with:
Expand All @@ -82,7 +82,7 @@ jobs:
permissions: {}
name: Install Cosign v0.6.0 and test presence in path
steps:
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 #v3
- uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 #v3
- name: Install Cosign
uses: ./
with:
Expand All @@ -108,7 +108,7 @@ jobs:
permissions: {}
name: Install Cosign v0.6.0 and test presence in path with pre installed libpcsclite1 package
steps:
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 #v3
- uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 #v3
- name: Install libpcsclite1
run: |
sudo apt-get update -q
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
permissions: {}
name: Try to install a wrong Cosign
steps:
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 #v3
- uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 #v3
- name: Install Cosign
uses: ./
with:
Expand All @@ -151,7 +151,7 @@ jobs:
permissions: {}
name: Install Custom Cosign and test presence in path
steps:
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 #v3
- uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 #v3
- name: Install Cosign
uses: ./
with:
Expand All @@ -176,18 +176,18 @@ jobs:
fi
shell: bash

test_cosign_with_go_install:
runs-on: ubuntu-latest
permissions: {}
name: Try to install cosign with go
steps:
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # v3
- uses: actions/setup-go@f6164bd8c8acb4a71fb2791a8b6c4024ff038dab # v3.0.0
with:
go-version: '1.17.x'
- name: Install Cosign
uses: ./
with:
cosign-release: 'main'
- name: Check install!
run: cosign version
# test_cosign_with_go_install:
# runs-on: ubuntu-latest
# permissions: {}
# name: Try to install cosign with go
# steps:
# - uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # v3
# - uses: actions/setup-go@f6164bd8c8acb4a71fb2791a8b6c4024ff038dab # v3.0.0
# with:
# go-version: '1.17.x'
# - name: Install Cosign
# uses: ./
# with:
# cosign-release: 'main'
# - name: Check install!
# run: cosign version

0 comments on commit f997690

Please sign in to comment.