Skip to content

Commit 95b1e19

Browse files
committed
docs(CI): Use checkout v3
1 parent e30ba27 commit 95b1e19

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

docs/content/en/Continuous-Integration/GitHub-Actions.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
strategy:
1919
matrix:
2020
os: [ubuntu-latest, macos-latest, windows-latest]
21-
emacs-version: [26.3, 27.2, 28.2, snapshot]
21+
emacs-version: [26.3, 27.2, 28.2, 29.1, snapshot]
2222

2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v3
2525

2626
# Install Emacs
2727
- uses: jcs090218/setup-emacs@master
@@ -42,11 +42,11 @@ jobs:
4242
4343
This example is testing your Emacs Lisp package in the below environment;
4444
45-
| OS | Emacs | Eask |
46-
|----------------|------------------------------------|--------|
47-
| Linux (Ubuntu) | `26.x`, `27.x`, `28.x`, `snapshot` | latest |
48-
| macOS | `26.x`, `27.x`, `28.x`, `snapshot` | latest |
49-
| Windows | `26.x`, `27.x`, `28.x`, `snapshot` | latest |
45+
| OS | Emacs | Eask |
46+
|----------------|--------------------------------------------|--------|
47+
| Linux (Ubuntu) | `26.x`, `27.x`, `28.x`, `29.x`, `snapshot` | latest |
48+
| macOS | `26.x`, `27.x`, `28.x`, `29.x`, `snapshot` | latest |
49+
| Windows | `26.x`, `27.x`, `28.x`, `29.x`, `snapshot` | latest |
5050

5151
with these following `actions`,
5252

@@ -65,7 +65,7 @@ You can install Eask locally using scripts from `.github/scripts/setup-eask` (Un
6565
or `.github/scripts/setup-eask.ps1` (Windows).
6666

6767
```yml
68-
- uses: actions/checkout@v2
68+
- uses: actions/checkout@v3
6969
7070
- name: Prepare Eask (Unix)
7171
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'

docs/content/zh-TW/Continuous-Integration/GitHub-Actions.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
strategy:
1919
matrix:
2020
os: [ubuntu-latest, macos-latest, windows-latest]
21-
emacs-version: [26.3, 27.2, 28.2, snapshot]
21+
emacs-version: [26.3, 27.2, 28.2, 29.1, snapshot]
2222

2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v3
2525

2626
# 安裝 Emacs
2727
- uses: jcs090218/setup-emacs@master
@@ -42,11 +42,11 @@ jobs:
4242
4343
此示例在以下環境中測試您的 Emacs Lisp 包;
4444
45-
| OS | Emacs | Eask |
46-
|----------------|------------------------------------|--------|
47-
| Linux (Ubuntu) | `26.x`, `27.x`, `28.x`, `snapshot` | latest |
48-
| macOS | `26.x`, `27.x`, `28.x`, `snapshot` | latest |
49-
| Windows | `26.x`, `27.x`, `28.x`, `snapshot` | latest |
45+
| OS | Emacs | Eask |
46+
|----------------|--------------------------------------------|--------|
47+
| Linux (Ubuntu) | `26.x`, `27.x`, `28.x`, `29.x`, `snapshot` | latest |
48+
| macOS | `26.x`, `27.x`, `28.x`, `29.x`, `snapshot` | latest |
49+
| Windows | `26.x`, `27.x`, `28.x`, `29.x`, `snapshot` | latest |
5050

5151
通過以下`操作`,
5252

@@ -65,7 +65,7 @@ jobs:
6565
中的腳本在本地安裝 Eask。
6666

6767
```yml
68-
- uses: actions/checkout@v2
68+
- uses: actions/checkout@v3
6969
7070
- name: 準備 Eask (Unix)
7171
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'

0 commit comments

Comments
 (0)