Skip to content

Commit f402a4d

Browse files
Copilotjohnthagen
andauthored
Update GitHub Actions to latest major versions (#313)
* Initial plan * Update GitHub Actions to latest major versions - Bump actions/checkout from v4 to v5 - Bump astral-sh/setup-uv from v5 to v7 - Bump actions/setup-python from v5 to v6 - Keep docker/build-push-action at v6 (already latest major) Co-authored-by: johnthagen <[email protected]> --------- Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: johnthagen <[email protected]>
1 parent 70e3095 commit f402a4d

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ jobs:
1313
python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ]
1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717

1818
- name: Install uv
19-
uses: astral-sh/setup-uv@v5
19+
uses: astral-sh/setup-uv@v7
2020
# Caching is enabled by default for GitHub-hosted runners:
2121
# https://github.com/astral-sh/setup-uv?tab=readme-ov-file#enable-caching
2222
with:
2323
version: ${{ env.UV_VERSION }}
2424

2525
- name: Set up Python ${{ matrix.python-version }}
26-
uses: actions/setup-python@v5
26+
uses: actions/setup-python@v6
2727
with:
2828
python-version: ${{ matrix.python-version }}
2929

@@ -40,15 +40,15 @@ jobs:
4040
nox-session: ["lint", "type_check", "docs"]
4141
steps:
4242
- name: Checkout code
43-
uses: actions/checkout@v4
43+
uses: actions/checkout@v5
4444

4545
- name: Install uv
46-
uses: astral-sh/setup-uv@v5
46+
uses: astral-sh/setup-uv@v7
4747
with:
4848
version: ${{ env.UV_VERSION }}
4949

5050
- name: Set up Python
51-
uses: actions/setup-python@v5
51+
uses: actions/setup-python@v6
5252
with:
5353
python-version-file: ".python-version"
5454

.github/workflows/pages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919

2020
- name: Install uv
21-
uses: astral-sh/setup-uv@v5
21+
uses: astral-sh/setup-uv@v7
2222
with:
2323
version: ${{ env.UV_VERSION }}
2424

2525
- name: Set up Python
26-
uses: actions/setup-python@v5
26+
uses: actions/setup-python@v6
2727
with:
2828
python-version-file: ".python-version"
2929

0 commit comments

Comments
 (0)