Skip to content

Commit a701db5

Browse files
authoredMar 10, 2024··
Update GitHub actions to latest due to Node 16 deprecation. (#288)
Older version of both `checkout` and `setup-python` action use Node version 16, which is EOL. GitHub is going to deprecate usage of Node 16 in October. See: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/
1 parent b23ac6d commit a701db5

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed
 

‎.github/workflows/deploy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010

1111
steps:
1212
- name: Checkout repository
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v4
1414

1515
- name: Set up Python
16-
uses: actions/setup-python@v2
16+
uses: actions/setup-python@v5
1717
with:
1818
python-version: '3.7'
1919

‎.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414

1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1818

1919
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
20-
uses: actions/setup-python@v2
20+
uses: actions/setup-python@v5
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ jobs:
151151
name: 'Static checks'
152152
runs-on: ubuntu-latest
153153
steps:
154-
- uses: actions/checkout@v3
154+
- uses: actions/checkout@v4
155155
- uses: Scony/godot-gdscript-toolkit@master
156156
- run: gdformat --check source/
157157
- run: gdlint source/

‎action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ runs:
2121
shell: bash
2222

2323
- id: install-python
24-
uses: actions/setup-python@v4
24+
uses: actions/setup-python@v5
2525
with:
2626
python-version: "3.x"
2727
cache: "pip"

0 commit comments

Comments
 (0)
Please sign in to comment.