Skip to content

Commit 8c673ab

Browse files
committed
github: update actions/checkout to v3
This fixes deprecation warnings about node v12.
1 parent 7347716 commit 8c673ab

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
python-version: [3.8, 3.9]
2727

2828
steps:
29-
- uses: actions/checkout@v2
29+
- uses: actions/checkout@v3
3030
with:
3131
submodules: recursive
3232
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/publish-ide-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
run: |
1414
sudo apt-get update
1515
sudo apt-get install -y dvisvgm preview-latex-style texlive texlive-fonts-extra texlive-latex-extra
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
with:
1818
submodules: recursive
1919
- name: Set up Python 3.8

.github/workflows/publish-jedi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
publish_jedi:
1010
runs-on: ubuntu-22.04
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313
# Setup .npmrc file to publish to npm
1414
- uses: actions/setup-node@v3
1515
with:

0 commit comments

Comments
 (0)