Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/api-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
git config --global url."https://${TOKEN}@github.com".insteadOf "https://github.com"

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3.1.0
with:
path: tyk
token: ${{ secrets.ORG_GH_TOKEN }}
Expand All @@ -57,7 +57,7 @@ jobs:
fi

- name: Checkout test repository
uses: actions/checkout@v2
uses: actions/checkout@v3.1.0
with:
repository: TykTechnologies/tyk-automated-tests
token: ${{ secrets.ORG_GH_TOKEN }}
Expand All @@ -81,7 +81,7 @@ jobs:
fi

- name: Checkout dashboard
uses: actions/checkout@v2
uses: actions/checkout@v3.1.0
with:
repository: TykTechnologies/tyk-analytics
token: ${{ secrets.ORG_GH_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

steps:
- name: Checkout Tyk
uses: actions/checkout@v2
uses: actions/checkout@v3.1.0
with:
fetch-depth: 2

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3.1.0
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/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3.1.0

- name: golangci-lint
uses: golangci/golangci-lint-action@v2
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
git config --global url."https://${TOKEN}@github.com".insteadOf "https://github.com"

- name: Checkout of tyk
uses: actions/checkout@v2
uses: actions/checkout@v3.1.0
with:
fetch-depth: 1

Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:

steps:
- name: Shallow checkout of tyk
uses: actions/checkout@v2
uses: actions/checkout@v3.1.0
with:
fetch-depth: 1

Expand Down Expand Up @@ -268,7 +268,7 @@ jobs:
- debian:bullseye

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
with:
fetch-depth: 1

Expand Down Expand Up @@ -322,7 +322,7 @@ jobs:
- ubi8/ubi

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
with:
fetch-depth: 1

Expand Down Expand Up @@ -370,7 +370,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
with:
fetch-depth: 1

Expand Down Expand Up @@ -419,7 +419,7 @@ jobs:

steps:
- name: Checkout tyk
uses: actions/checkout@v2
uses: actions/checkout@v3.1.0
with:
fetch-depth: 1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
branch: [ release-4-lts, release-3.2.3, release-4 ]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
with:
ref: ${{matrix.branch}}
token: ${{ secrets.ORG_GH_TOKEN }}
Expand Down