Skip to content

Commit 5e87e66

Browse files
chore(deps): bump the dependencies group across 1 directory with 3 updates
Bumps the dependencies group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python) and [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv). Updates `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) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `astral-sh/setup-uv` from 6 to 7 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: astral-sh/setup-uv dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 11c09ff commit 5e87e66

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

.github/workflows/check-markdown-links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout code
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v5
1212

1313
- name: Link Checker
1414
id: lychee

.github/workflows/ci.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
fail-fast: false
4545

4646
steps:
47-
- uses: actions/checkout@v4
47+
- uses: actions/checkout@v5
4848
with:
4949
# in a pull_request_target event, the ref is the `main` branch not the PR branch
5050
# so we need to tell checkout to use the head.ref instead.
@@ -53,7 +53,7 @@ jobs:
5353
- uses: taiki-e/install-action@just
5454

5555
- name: Set up Python
56-
uses: actions/setup-python@v5
56+
uses: actions/setup-python@v6
5757
with:
5858
python-version: "3.10"
5959

@@ -129,7 +129,7 @@ jobs:
129129
runs-on: ubuntu-latest
130130

131131
steps:
132-
- uses: actions/checkout@v4
132+
- uses: actions/checkout@v5
133133
with:
134134
# in a pull_request_target event, the ref is the `main` branch not the PR branch
135135
# so we need to tell checkout to use the head.ref instead.
@@ -148,14 +148,14 @@ jobs:
148148
- uses: taiki-e/install-action@just
149149

150150
- name: Install uv
151-
uses: astral-sh/setup-uv@v6
151+
uses: astral-sh/setup-uv@v7
152152
with:
153153
version: "0.7.10"
154154
enable-cache: true
155155
cache-dependency-glob: "./projects/pgai/uv.lock"
156156

157157
- name: "Set up Python"
158-
uses: actions/setup-python@v5
158+
uses: actions/setup-python@v6
159159
with:
160160
python-version-file: "./projects/pgai/.python-version"
161161

@@ -169,7 +169,7 @@ jobs:
169169
needs: authorize
170170
runs-on: ubuntu-latest
171171
steps:
172-
- uses: actions/checkout@v4
172+
- uses: actions/checkout@v5
173173
with:
174174
# in a pull_request_target event, the ref is the `main` branch not the PR branch
175175
# so we need to tell checkout to use the head.ref instead.
@@ -196,7 +196,7 @@ jobs:
196196
- name: Delete huge unnecessary tools folder
197197
run: rm -rf /opt/hostedtoolcache
198198

199-
- uses: actions/checkout@v4
199+
- uses: actions/checkout@v5
200200
with:
201201
# in a pull_request_target event, the ref is the `main` branch not the PR branch
202202
# so we need to tell checkout to use the head.ref instead.
@@ -205,14 +205,14 @@ jobs:
205205
- uses: taiki-e/install-action@just
206206

207207
- name: Install uv
208-
uses: astral-sh/setup-uv@v6
208+
uses: astral-sh/setup-uv@v7
209209
with:
210210
version: "0.7.10"
211211
enable-cache: true
212212
cache-dependency-glob: "./projects/pgai/uv.lock"
213213

214214
- name: "Set up Python"
215-
uses: actions/setup-python@v5
215+
uses: actions/setup-python@v6
216216
with:
217217
python-version-file: "./projects/pgai/.python-version"
218218

@@ -236,14 +236,14 @@ jobs:
236236
fail-fast: true
237237

238238
steps:
239-
- uses: actions/checkout@v4
239+
- uses: actions/checkout@v5
240240
with:
241241
# in a pull_request_target event, the ref is the `main` branch not the PR branch
242242
# so we need to tell checkout to use the head.ref instead.
243243
ref: ${{ github.event.pull_request.head.sha || github.ref }}
244244

245245
- name: "Set up Python"
246-
uses: actions/setup-python@v5
246+
uses: actions/setup-python@v6
247247
with:
248248
python-version: ${{ matrix.python-version }}
249249

.github/workflows/commit-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
commitlint:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
with:
1414
fetch-depth: 0
1515
- uses: wagoid/commitlint-github-action@v6

.github/workflows/huggingface-dataset.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
name: Publish dataset to huggingface hub
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222

2323
- name: Install uv
24-
uses: astral-sh/setup-uv@v6
24+
uses: astral-sh/setup-uv@v7
2525
with:
2626
version: "0.7.10"
2727
enable-cache: true

.github/workflows/release-please.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@ jobs:
2828
if: needs.release-please.outputs.pgai_release_created
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v5
3232

3333
- name: Install uv
34-
uses: astral-sh/setup-uv@v6
34+
uses: astral-sh/setup-uv@v7
3535
with:
3636
version: "0.7.10"
3737
enable-cache: true
3838
cache-dependency-glob: "./projects/pgai/uv.lock"
3939

4040
- name: "Set up Python"
41-
uses: actions/setup-python@v5
41+
uses: actions/setup-python@v6
4242
with:
4343
python-version-file: "./projects/pgai/.python-version"
4444

0 commit comments

Comments
 (0)