Skip to content

Commit 2794ea2

Browse files
committed
CI: Update workflows
1 parent 44cd51f commit 2794ea2

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ jobs:
3131
- 'x64'
3232
steps:
3333
- name: Checkout Repository
34-
uses: actions/checkout@v2
34+
uses: actions/checkout@v3
3535
- name: Set up Python ${{ matrix.python }}
36-
uses: actions/setup-python@v2
36+
uses: actions/setup-python@v3
3737
with:
3838
python-version: ${{ matrix.python }}
3939
architecture: ${{ matrix.arch }}

.github/workflows/ci-syntax-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on:
2323
jobs:
2424
syntax_tests:
2525
name: Sublime Text ${{ matrix.build }}
26-
runs-on: ubuntu-18.04
26+
runs-on: ubuntu-latest
2727
timeout-minutes: 15 # default is 6 hours!
2828
strategy:
2929
matrix:
@@ -35,7 +35,7 @@ jobs:
3535
- build: latest
3636
default_packages: master
3737
steps:
38-
- uses: actions/checkout@v2
38+
- uses: actions/checkout@v3
3939
- uses: SublimeText/syntax-test-action@v2
4040
with:
4141
build: ${{ matrix.build }}

.github/workflows/ci-unit-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ on:
2121
jobs:
2222
test:
2323
name: Sublime Text ${{ matrix.st-version }}
24-
runs-on: ubuntu-18.04
24+
runs-on: ubuntu-latest
2525
timeout-minutes: 15 # default is 6 hours!
2626
strategy:
2727
fail-fast: false
2828
matrix:
2929
st-version: [3, 4]
3030
steps:
31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v3
3232
- uses: SublimeText/UnitTesting/actions/setup@v1
3333
with:
3434
sublime-text-version: ${{ matrix.st-version }}

.github/workflows/deploy-gh-pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ on:
1111
jobs:
1212
build:
1313
name: Deploy Docs to Github Pages
14-
runs-on: ubuntu-18.04
14+
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout Repository
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v3
1818
with:
1919
fetch-depth: 0
2020
- name: Set up Python

0 commit comments

Comments
 (0)