Skip to content

Commit 9f607fd

Browse files
committed
ci: bump checkout and setup-python to fix Node 20 deprecation
GitHub Actions runners are dropping Node 20 support, forcing actions pinned to it onto Node 24 with a deprecation warning. Bump actions/checkout v3->v4 and actions/setup-python v4->v5 in the build and deploy workflows to versions that target Node 24 natively. Part of LITE-33583.
1 parent dbbb038 commit 9f607fd

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
python-version: ['3.9', '3.10', '3.11', '3.12']
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121
with:
2222
fetch-depth: 0
2323
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v4
24+
uses: actions/setup-python@v5
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727
- name: Install dependencies
@@ -41,11 +41,11 @@ jobs:
4141
runs-on: ubuntu-latest
4242
steps:
4343
- name: Checkout
44-
uses: actions/checkout@v3
44+
uses: actions/checkout@v4
4545
with:
4646
fetch-depth: 0
4747
- name: Set up Python '3.10.0'
48-
uses: actions/setup-python@v4
48+
uses: actions/setup-python@v5
4949
with:
5050
python-version: '3.10'
5151
- name: Install dependencies

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
deploy:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
- name: Set up Python
13-
uses: actions/setup-python@v4
13+
uses: actions/setup-python@v5
1414
with:
1515
python-version: '3.10'
1616
- name: Install dependencies

0 commit comments

Comments
 (0)