mirror of
https://github.com/pomerium/pomerium.git
synced 2025-08-03 16:59:22 +02:00
chore(deps): bump actions/checkout from 3.0.0 to 3.0.1 (#3275)
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](a12a3943b4...dcd71f6466
)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
9ae5c26f42
commit
375fcc1dd7
3 changed files with 11 additions and 11 deletions
4
.github/workflows/docker-main.yaml
vendored
4
.github/workflows/docker-main.yaml
vendored
|
@ -15,7 +15,7 @@ jobs:
|
|||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # pin@v3
|
||||
uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # pin@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
|
@ -77,7 +77,7 @@ jobs:
|
|||
needs: publish
|
||||
steps:
|
||||
- name: Checkout Gitops Repo
|
||||
uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # pin@v3
|
||||
uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # pin@v3
|
||||
with:
|
||||
repository: pomerium/gitops-argocd
|
||||
token: ${{ secrets.APPARITOR_GITHUB_TOKEN }}
|
||||
|
|
4
.github/workflows/release.yaml
vendored
4
.github/workflows/release.yaml
vendored
|
@ -20,7 +20,7 @@ jobs:
|
|||
tag: ${{ steps.tagName.outputs.tag }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # pin@v3
|
||||
uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # pin@v3
|
||||
|
||||
- name: Unshallow
|
||||
run: git fetch --prune --unshallow
|
||||
|
@ -116,7 +116,7 @@ jobs:
|
|||
needs: goreleaser
|
||||
steps:
|
||||
- name: Checkout Gitops Repo
|
||||
uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # pin@v3
|
||||
uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # pin@v3
|
||||
with:
|
||||
repository: pomerium/gitops-argocd
|
||||
token: ${{ secrets.APPARITOR_GITHUB_TOKEN }}
|
||||
|
|
14
.github/workflows/test.yaml
vendored
14
.github/workflows/test.yaml
vendored
|
@ -26,7 +26,7 @@ jobs:
|
|||
|
||||
- name: set env vars
|
||||
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
|
||||
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # pin@v3
|
||||
- uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # pin@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: cache go binaries
|
||||
|
@ -71,7 +71,7 @@ jobs:
|
|||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # pin@v3
|
||||
- uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # pin@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
|
@ -131,7 +131,7 @@ jobs:
|
|||
|
||||
- name: set env vars
|
||||
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
|
||||
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # pin@v3
|
||||
- uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # pin@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- uses: actions/cache@48af2dc4a9e8278b89d7fa154b955c30c6aaab09 # pin@v3
|
||||
|
@ -175,7 +175,7 @@ jobs:
|
|||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # pin@v3
|
||||
- uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # pin@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- uses: actions/cache@48af2dc4a9e8278b89d7fa154b955c30c6aaab09 # pin@v3
|
||||
|
@ -203,7 +203,7 @@ jobs:
|
|||
build-docker:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # pin@v3
|
||||
- uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # pin@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
|
@ -221,7 +221,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
if: github.event_name == 'pull_request'
|
||||
steps:
|
||||
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # pin@v3
|
||||
- uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # pin@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- uses: actions/setup-go@f6164bd8c8acb4a71fb2791a8b6c4024ff038dab # pin@v2
|
||||
|
@ -249,7 +249,7 @@ jobs:
|
|||
with:
|
||||
go-version: 1.17.x
|
||||
|
||||
- uses: actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846 # pin@v3
|
||||
- uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 # pin@v3
|
||||
|
||||
- name: retrieve binary
|
||||
uses: actions/download-artifact@fb598a63ae348fa914e94cd0ff38f362e927b741 # pin@v2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue