Skip to content

Commit dadbad7

Browse files
committed
fix: bump gha versions
1 parent cc0efee commit dadbad7

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,33 +5,32 @@ on:
55
types:
66
- created
77

8-
98
jobs:
109
build:
1110
name: Linux Py${{ matrix.PYTHON_VERSION }}
1211
runs-on: ubuntu-latest
1312
env:
14-
CI: 'true'
15-
OS: 'linux'
13+
CI: "true"
14+
OS: "linux"
1615
PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }}
1716
strategy:
1817
fail-fast: false
1918
matrix:
20-
PYTHON_VERSION: ['3.8']
19+
PYTHON_VERSION: ["3.8"]
2120
timeout-minutes: 10
2221
steps:
23-
- uses: actions/cache@v1
22+
- uses: actions/cache@v4
2423
with:
2524
path: ~/.cache/pip
2625
key: ${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-${{ hashFiles('setup.py') }}
2726
restore-keys: ${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-
28-
- uses: actions/checkout@v2
27+
- uses: actions/checkout@v4
2928
with:
3029
fetch-depth: 0
31-
- uses: actions/setup-python@v2
30+
- uses: actions/setup-python@v5
3231
with:
3332
python-version: ${{ matrix.PYTHON_VERSION }}
34-
architecture: 'x64'
33+
architecture: "x64"
3534
- run: python -m pip install --upgrade pip setuptools wheel twine
3635
- name: Build and publish python-language-server
3736
env:

0 commit comments

Comments
 (0)