Skip to content

Commit 7d8a2b8

Browse files
Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent e7dd30f commit 7d8a2b8

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/ci-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106

107107
steps:
108108
- name: Checkout Tyk
109-
uses: actions/checkout@v4
109+
uses: actions/checkout@v5
110110
with:
111111
ref: ${{ github.ref }}
112112

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: Checkout repository
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636
with:
3737
# We must fetch at least the immediate parents so that if this is
3838
# a pull request then we can checkout the head.

.github/workflows/lint-swagger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: Validate the swagger with redocly cli
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
- uses: actions/setup-node@v4
2222
with:
2323
node-version: 20

.github/workflows/plugin-compiler-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: sudo rm -rf /usr/local/bin/* /usr/share/dotnet /usr/local/lib/android /opt/ghc /opt/hostedtoolcache/CodeQL
2929

3030
- name: Checkout
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
with:
3333
fetch-depth: 1
3434

.github/workflows/release-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Opentelemetry e2e
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
with:
1515
fetch-depth: 1
1616

@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ubuntu-latest
3333

3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v5
3636
with:
3737
fetch-depth: 1
3838

@@ -70,7 +70,7 @@ jobs:
7070
if: startsWith(github.ref, 'refs/tags')
7171

7272
steps:
73-
- uses: actions/checkout@v4
73+
- uses: actions/checkout@v5
7474
with:
7575
fetch-depth: 1
7676

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
commit_author: ${{ steps.set_outputs.outputs.commit_author}}
5555
steps:
5656
- name: Checkout of tyk
57-
uses: actions/checkout@v4
57+
uses: actions/checkout@v5
5858
with:
5959
fetch-depth: 1
6060
- name: Set some outputs for later
@@ -406,7 +406,7 @@ jobs:
406406
- arm64
407407
distro: ${{ fromJson(needs.test-controller-distros.outputs.deb) }}
408408
steps:
409-
- uses: actions/checkout@v4
409+
- uses: actions/checkout@v5
410410
with:
411411
fetch-depth: 1
412412
sparse-checkout: ci
@@ -463,7 +463,7 @@ jobs:
463463
- arm64
464464
distro: ${{ fromJson(needs.test-controller-distros.outputs.rpm) }}
465465
steps:
466-
- uses: actions/checkout@v4
466+
- uses: actions/checkout@v5
467467
with:
468468
fetch-depth: 1
469469
sparse-checkout: ci

0 commit comments

Comments
 (0)