11
11
guideversion : ${{ steps.check_step.outputs.guideversion }}
12
12
steps :
13
13
- name : Checkout
14
- uses : actions/checkout@v3
14
+ uses : actions/checkout@v4
15
15
with :
16
16
fetch-depth : 0
17
17
77
77
78
78
- name : Checkout the main branch on Mac
79
79
if : matrix.os == 'macos-11'
80
- uses : actions/checkout@v3
80
+ uses : actions/checkout@v4
81
81
82
82
- name : Get the latest releases (authenticated request on mac)
83
83
if : ${{ matrix.os == 'macos-11' && env.HAVE_ACCESS_TOKEN == 'true' }}
@@ -96,13 +96,13 @@ jobs:
96
96
97
97
- name : Install dependencies on Windows
98
98
if : matrix.os == 'windows-2019'
99
- uses : crazy-max/ghaction-chocolatey@v2
99
+ uses : crazy-max/ghaction-chocolatey@v3
100
100
with :
101
101
args : install sass
102
102
103
103
- name : Checkout the main branch on Windows
104
104
if : matrix.os == 'windows-2019'
105
- uses : actions/checkout@v3
105
+ uses : actions/checkout@v4
106
106
107
107
- name : Get the latest releases (authenticated request on Windows)
108
108
if : ${{ matrix.os == 'windows-2019' && env.HAVE_ACCESS_TOKEN == 'true' }}
@@ -132,7 +132,7 @@ jobs:
132
132
133
133
- name : Checkout the gh-pages branch on Linux
134
134
if : matrix.os == 'ubuntu-20.04'
135
- uses : actions/checkout@v3
135
+ uses : actions/checkout@v4
136
136
with :
137
137
ref : ' gh-pages'
138
138
@@ -149,7 +149,7 @@ jobs:
149
149
150
150
- name : Checkout the main branch on Linux
151
151
if : matrix.os == 'ubuntu-20.04'
152
- uses : actions/checkout@v3
152
+ uses : actions/checkout@v4
153
153
154
154
- name : Setup SaxonEE on Linux
155
155
if : ${{ matrix.os == 'ubuntu-20.04' && env.HAVE_SAXON_EE == 'true' }}
@@ -213,7 +213,7 @@ jobs:
213
213
target-folder : /release/xsltng/current
214
214
215
215
- name : Publish release
216
- uses : softprops/action-gh-release@v1
216
+ uses : softprops/action-gh-release@v2
217
217
if : ${{ matrix.os == 'ubuntu-20.04' && env.HAVE_ACCESS_TOKEN == 'true' && env.CI_BRANCH == 'main' && env.CI_TAG != '' }}
218
218
with :
219
219
draft : false
@@ -236,7 +236,7 @@ jobs:
236
236
rm -f secret.gpg
237
237
238
238
- name : Checkout the CDN
239
- uses : actions/checkout@v3
239
+ uses : actions/checkout@v4
240
240
if : ${{ matrix.os == 'ubuntu-20.04' && env.HAVE_ACCESS_TOKEN == 'true' && env.CI_BRANCH == 'main' && env.CI_TAG != '' }}
241
241
with :
242
242
repository : ${{ github.repository_owner}}/cdn
0 commit comments