Skip to content

Commit d307d49

Browse files
saitcakmakmeta-codesync[bot]
authored andcommitted
Update astral-sh/setup-uv from v5 to v7 in all workflows (facebook#5019)
Summary: - Updates `astral-sh/setup-uv` from v5 to v7 across all GitHub Actions workflows - Resolves Node.js 20 deprecation warning: "Node.js 20 actions are deprecated and will be forced to run on Node.js 24 starting June 2, 2026" Pull Request resolved: facebook#5019 Test Plan: - CI workflows should pass with the updated action version Reviewed By: sdaulton Differential Revision: D96493049 Pulled By: saitcakmak fbshipit-source-id: cc21eeabc9114a30e7cd0d976c610fb00f3657c2
1 parent 1e48d0f commit d307d49

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v6
2525
- name: Install uv
26-
uses: astral-sh/setup-uv@v5
26+
uses: astral-sh/setup-uv@v7
2727
- name: Set up Python
2828
uses: actions/setup-python@v6
2929
with:

.github/workflows/cron.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- name: Fetch all history for all tags and branches
5454
run: git fetch --prune --unshallow
5555
- name: Install uv
56-
uses: astral-sh/setup-uv@v5
56+
uses: astral-sh/setup-uv@v7
5757
- name: Set up Python
5858
uses: actions/setup-python@v6
5959
with:

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
steps:
3838
- uses: actions/checkout@v6
3939
- name: Install uv
40-
uses: astral-sh/setup-uv@v5
40+
uses: astral-sh/setup-uv@v7
4141
- name: Set up Python
4242
uses: actions/setup-python@v6
4343
with:

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v6
2020
- name: Install uv
21-
uses: astral-sh/setup-uv@v5
21+
uses: astral-sh/setup-uv@v7
2222
- name: Set up Python
2323
uses: actions/setup-python@v6
2424
with:

.github/workflows/publish_website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
git merge origin/main
5151
# To avoid a large number of commits we don't push this sync commit to github until a new release.
5252
- name: Install uv
53-
uses: astral-sh/setup-uv@v5
53+
uses: astral-sh/setup-uv@v7
5454
- name: Set up Python
5555
uses: actions/setup-python@v6
5656
with:

.github/workflows/reusable_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
steps:
3434
- uses: actions/checkout@v6
3535
- name: Install uv
36-
uses: astral-sh/setup-uv@v5
36+
uses: astral-sh/setup-uv@v7
3737
- name: Set up Python ${{ matrix.python-version }}
3838
uses: actions/setup-python@v6
3939
with:

.github/workflows/reusable_tutorials.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
steps:
3030
- uses: actions/checkout@v6
3131
- name: Install uv
32-
uses: astral-sh/setup-uv@v5
32+
uses: astral-sh/setup-uv@v7
3333
- name: Set up Python
3434
uses: actions/setup-python@v6
3535
with:

0 commit comments

Comments
 (0)