Skip to content

Commit

Permalink
Revert update to actions/checkout requirement to v2.3.4 (kedacore#1362)
Browse files Browse the repository at this point in the history
Signed-off-by: Tom Kerkhove <kerkhove.tom@gmail.com>
  • Loading branch information
tomkerkhove authored Nov 20, 2020
1 parent 0ae8325 commit b9a6575
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2.3.4
uses: actions/checkout@v1
with:
fetch-depth: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fossa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
# build-tools is built from ../../tools/build-tools.Dockerfile
container: kedacore/build-tools:main
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v1
- uses: actions/setup-go@v2
with:
go-version: "^1.15.3"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
container: kedacore/build-tools:main
steps:
- name: Check out code
uses: actions/checkout@v2.3.4
uses: actions/checkout@v1
with:
fetch-depth: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
container: kedacore/build-tools:main
steps:
- name: Check out code
uses: actions/checkout@v2.3.4
uses: actions/checkout@v1
with:
fetch-depth: 1

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
container: kedacore/build-tools:main
steps:
- name: Check out code
uses: actions/checkout@v2.3.4
uses: actions/checkout@v1
with:
fetch-depth: 1

Expand All @@ -36,7 +36,7 @@ jobs:
name: Static Checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v1
- uses: actions/setup-python@v2.1.4
- uses: actions/setup-go@v2
with:
Expand All @@ -57,7 +57,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2.3.4
uses: actions/checkout@v1
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
container: kedacore/build-tools:main
steps:
- name: Check out code
uses: actions/checkout@v2.3.4
uses: actions/checkout@v1
with:
fetch-depth: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/v1-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
container: kedacore/build-tools:v1
steps:
- name: Check out code
uses: actions/checkout@v2.3.4
uses: actions/checkout@v1
with:
fetch-depth: 1

Expand Down

0 comments on commit b9a6575

Please sign in to comment.