Skip to content

Commit

Permalink
build(deps): update actions/checkout action (#102)
Browse files Browse the repository at this point in the history
Signed-off-by: Renovate Bot <[email protected]>

Co-authored-by: Renovate Bot <[email protected]>
  • Loading branch information
renovate[bot] and renovate-bot authored Mar 3, 2022
1 parent 4cc1553 commit 7f8df1c
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.0.0
with:
fetch-depth: 0 # need to checkout "all commits" for certain features to work (e.g., get all changed files)

Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Unit tests
uses: ./.github/actions/unit-tests

Expand All @@ -119,7 +119,7 @@ jobs:
DATETIME: ${{ needs.prepare_ci_run.outputs.DATETIME }}
steps:
- name: Checkout Code
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.0.0

- name: Load CI Environment from .ci_env
id: load_ci_env
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/initrepo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: A job to initialize a repository freshly cloned from the template
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v2
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Unit tests
uses: ./.github/actions/unit-tests

Expand All @@ -23,7 +23,7 @@ jobs:
VERSION: ${{ needs.pre-release.outputs.RELEASE_TAG }}
steps:
- name: Checkout Code
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.0.0

- name: Load CI Environment from .ci_env
id: load_ci_env
Expand All @@ -48,7 +48,7 @@ jobs:
VERSION: ${{ needs.pre-release.outputs.RELEASE_TAG }}
steps:
- name: Checkout Code
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.0.0

- name: Load CI Environment from .ci_env
id: load_ci_env
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Check out repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Unit tests
uses: ./.github/actions/unit-tests

Expand All @@ -23,7 +23,7 @@ jobs:
VERSION: ${{ needs.release.outputs.RELEASE_TAG }}
steps:
- name: Checkout Code
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.0.0

- name: Load CI Environment from .ci_env
id: load_ci_env
Expand All @@ -49,7 +49,7 @@ jobs:
VERSION: ${{ needs.release.outputs.RELEASE_TAG }}
steps:
- name: Checkout Code
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.0.0

- name: Load CI Environment from .ci_env
id: load_ci_env
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reviewdog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
go-version: 1.17
id: go
- name: Check out code.
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3.0.0
- name: Install linters
run: '( mkdir linters && cd linters && go get golang.org/x/lint/golint )'
- uses: reviewdog/[email protected]
Expand Down

0 comments on commit 7f8df1c

Please sign in to comment.