@@ -11,7 +11,7 @@ weight: 100
1111
1212Here is an example using the [ GitHub] ( https://github.com/ ) Actions service.
1313
14- ``` yml
14+ ``` yaml
1515jobs :
1616 test :
1717 runs-on : ${{ matrix.os }}
2121 emacs-version : [26.3, 27.2, 28.2, 29.4, 30.2, snapshot]
2222
2323 steps :
24- - uses : actions/checkout@v3
24+ - uses : actions/checkout@v5
2525
2626 # Install Emacs
2727 - uses : jcs090218/setup-emacs@master
@@ -50,11 +50,11 @@ This example is testing your Emacs Lisp package in the below environment;
5050
5151with these following `actions`,
5252
53- * [setup-emacs](https://github.com/jcs090218/setup-emacs) to install Emacs
54- * [setup-eask](https://github.com/emacs-eask/setup-eask) to install desired Eask version
53+ - [setup-emacs][] to install Emacs
54+ - [setup-eask][] to install desired Eask version
5555
5656{{< hint info >}}
57- 💡 You can generate workflow file via `eask generate workflow github`, see
57+ 💡 You can generate workflow file via `eask generate workflow github`, see
5858[Commands and options](https://emacs-eask.github.io/Getting-Started/Commands-and-options/#-eask-generate-workflow-github)
5959for more information!
6060{{< /hint >}}
@@ -64,8 +64,8 @@ for more information!
6464You can install Eask locally using scripts from `.github/scripts/setup-eask` (Unix)
6565or `.github/scripts/setup-eask.ps1` (Windows).
6666
67- ` ` ` yml
68- - uses: actions/checkout@v3
67+ ` ` ` yaml
68+ - uses: actions/checkout@v5
6969
7070 - name: Prepare Eask (Unix)
7171 if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
@@ -77,3 +77,9 @@ or `.github/scripts/setup-eask.ps1` (Windows).
7777 if: matrix.os == 'windows-latest'
7878 run: .github/scripts/setup-eask.ps1
7979` ` `
80+
81+
82+ <!-- Links -->
83+
84+ [setup-emacs] : https://github.com/jcs090218/setup-emacs
85+ [setup-eask] : https://github.com/emacs-eask/setup-eask
0 commit comments