Skip to content

Commit abf103b

Browse files
authored
Merge pull request #2023 from jupyterhub/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents 48f59b5 + b9a1996 commit abf103b

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

.github/workflows/diff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
diff-rendered-templates:
2323
runs-on: ubuntu-22.04
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
with:
2727
fetch-depth: 0
2828

.github/workflows/eslint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
build:
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v5
3333

3434
- run: npm install
3535

.github/workflows/jest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
test:
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626

2727
- name: "Setup dependencies"
2828
run: |

.github/workflows/playwright.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
GITHUB_ACCESS_TOKEN: "${{ secrets.github_token }}"
3535

3636
steps:
37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v5
3838

3939
- name: Setup OS level dependencies
4040
run: |

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ubuntu-latest
3636
if: startsWith(github.ref, 'refs/tags/') || (github.ref == 'refs/heads/main')
3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v5
3939
with:
4040
# chartpress requires the full history
4141
fetch-depth: 0
@@ -113,7 +113,7 @@ jobs:
113113
PyPI-testbuild:
114114
runs-on: ubuntu-latest
115115
steps:
116-
- uses: actions/checkout@v4
116+
- uses: actions/checkout@v5
117117
with:
118118
# Versioneer requires past tags
119119
fetch-depth: 0

.github/workflows/test-docker-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
build_images:
3131
runs-on: ubuntu-22.04
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434
with:
3535
# chartpress requires git history to set chart version and image tags
3636
# correctly

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
lint:
3131
runs-on: ubuntu-22.04
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434

3535
- name: install requirements
3636
run: pip install ruamel.yaml
@@ -98,7 +98,7 @@ jobs:
9898
- 5000:5000
9999

100100
steps:
101-
- uses: actions/checkout@v4
101+
- uses: actions/checkout@v5
102102
with:
103103
# chartpress requires the full history
104104
fetch-depth: 0
@@ -386,7 +386,7 @@ jobs:
386386
GITHUB_ACCESS_TOKEN: "${{ secrets.github_token }}"
387387

388388
steps:
389-
- uses: actions/checkout@v4
389+
- uses: actions/checkout@v5
390390

391391
- name: Setup OS level dependencies
392392
run: |

.github/workflows/watch-dependencies.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
# values_path: imageCleaner.image.tag
5656

5757
steps:
58-
- uses: actions/checkout@v4
58+
- uses: actions/checkout@v5
5959

6060
- name: Get values.yaml pinned tag of ${{ matrix.registry }}/${{ matrix.repository }}
6161
id: local
@@ -109,7 +109,7 @@ jobs:
109109
runs-on: ubuntu-latest
110110

111111
steps:
112-
- uses: actions/checkout@v4
112+
- uses: actions/checkout@v5
113113

114114
- name: Refreeze helm-chart/images/binderhub/requirements.txt based on requirements.in
115115
run: ci/refreeze

0 commit comments

Comments
 (0)