Skip to content

Commit 3ff40a5

Browse files
ci: bump actions/checkout from 6 to 7
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent c79ad91 commit 3ff40a5

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
python-version: ["3.10", "3.11", "3.12", "3.13"]
1515

1616
steps:
17-
- uses: actions/checkout@v6
17+
- uses: actions/checkout@v7
1818

1919
- name: Install uv
2020
uses: astral-sh/setup-uv@v7
@@ -47,7 +47,7 @@ jobs:
4747
docs:
4848
runs-on: ubuntu-latest
4949
steps:
50-
- uses: actions/checkout@v6
50+
- uses: actions/checkout@v7
5151

5252
- name: Install uv
5353
uses: astral-sh/setup-uv@v7

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
(github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success')
2424
2525
steps:
26-
- uses: actions/checkout@v6
26+
- uses: actions/checkout@v7
2727
with:
2828
# For workflow_run, checkout the commit that triggered Release
2929
ref: ${{ github.event.workflow_run.head_sha || github.ref }}

.github/workflows/latest-deps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
python-version: ["3.10", "3.13"]
1717

1818
steps:
19-
- uses: actions/checkout@v6
19+
- uses: actions/checkout@v7
2020

2121
- name: Install uv
2222
uses: astral-sh/setup-uv@v7

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: pypi
2323
url: https://pypi.org/project/xarray_plotly
2424
steps:
25-
- uses: actions/checkout@v6
25+
- uses: actions/checkout@v7
2626
with:
2727
ref: ${{ github.ref_name }}
2828
fetch-depth: 0
@@ -46,7 +46,7 @@ jobs:
4646
if: github.event_name == 'push' && needs.publish.result == 'success'
4747
runs-on: ubuntu-24.04
4848
steps:
49-
- uses: actions/checkout@v6
49+
- uses: actions/checkout@v7
5050
with:
5151
ref: ${{ github.ref_name }}
5252

0 commit comments

Comments
 (0)