Skip to content

Commit b8fdda2

Browse files
authored
Merge pull request #553 from ndw/action-fixes
Bump versions of GitHub actions
2 parents e86f67f + 0d621db commit b8fdda2

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/build-branch.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
guideversion: ${{ steps.check_step.outputs.guideversion }}
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
1717

@@ -77,7 +77,7 @@ jobs:
7777
7878
- name: Checkout the main branch on Mac
7979
if: matrix.os == 'macos-11'
80-
uses: actions/checkout@v3
80+
uses: actions/checkout@v4
8181

8282
- name: Get the latest releases (authenticated request on mac)
8383
if: ${{ matrix.os == 'macos-11' && env.HAVE_ACCESS_TOKEN == 'true' }}
@@ -96,13 +96,13 @@ jobs:
9696

9797
- name: Install dependencies on Windows
9898
if: matrix.os == 'windows-2019'
99-
uses: crazy-max/ghaction-chocolatey@v2
99+
uses: crazy-max/ghaction-chocolatey@v3
100100
with:
101101
args: install sass
102102

103103
- name: Checkout the main branch on Windows
104104
if: matrix.os == 'windows-2019'
105-
uses: actions/checkout@v3
105+
uses: actions/checkout@v4
106106

107107
- name: Get the latest releases (authenticated request on Windows)
108108
if: ${{ matrix.os == 'windows-2019' && env.HAVE_ACCESS_TOKEN == 'true' }}
@@ -132,7 +132,7 @@ jobs:
132132
133133
- name: Checkout the gh-pages branch on Linux
134134
if: matrix.os == 'ubuntu-20.04'
135-
uses: actions/checkout@v3
135+
uses: actions/checkout@v4
136136
with:
137137
ref: 'gh-pages'
138138

@@ -149,7 +149,7 @@ jobs:
149149
150150
- name: Checkout the main branch on Linux
151151
if: matrix.os == 'ubuntu-20.04'
152-
uses: actions/checkout@v3
152+
uses: actions/checkout@v4
153153

154154
- name: Setup SaxonEE on Linux
155155
if: ${{ matrix.os == 'ubuntu-20.04' && env.HAVE_SAXON_EE == 'true' }}
@@ -213,7 +213,7 @@ jobs:
213213
target-folder: /release/xsltng/current
214214

215215
- name: Publish release
216-
uses: softprops/action-gh-release@v1
216+
uses: softprops/action-gh-release@v2
217217
if: ${{ matrix.os == 'ubuntu-20.04' && env.HAVE_ACCESS_TOKEN == 'true' && env.CI_BRANCH == 'main' && env.CI_TAG != '' }}
218218
with:
219219
draft: false
@@ -236,7 +236,7 @@ jobs:
236236
rm -f secret.gpg
237237
238238
- name: Checkout the CDN
239-
uses: actions/checkout@v3
239+
uses: actions/checkout@v4
240240
if: ${{ matrix.os == 'ubuntu-20.04' && env.HAVE_ACCESS_TOKEN == 'true' && env.CI_BRANCH == 'main' && env.CI_TAG != '' }}
241241
with:
242242
repository: ${{ github.repository_owner}}/cdn

.github/workflows/build-pr.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
tag: ${{ steps.check_step.outputs.tag }}
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
2020

@@ -70,7 +70,7 @@ jobs:
7070
7171
- name: Checkout the pull request on Mac
7272
if: matrix.os == 'macos-11'
73-
uses: actions/checkout@v3
73+
uses: actions/checkout@v4
7474
with:
7575
ref: ${{ github.event.pull_request.head.sha }}
7676
fetch-depth: 0
@@ -91,13 +91,13 @@ jobs:
9191

9292
- name: Install dependencies on Windows
9393
if: matrix.os == 'windows-2019'
94-
uses: crazy-max/ghaction-chocolatey@v2
94+
uses: crazy-max/ghaction-chocolatey@v3
9595
with:
9696
args: install sass
9797

9898
- name: Checkout the pull request on Windows
9999
if: matrix.os == 'windows-2019'
100-
uses: actions/checkout@v3
100+
uses: actions/checkout@v4
101101
with:
102102
ref: ${{ github.event.pull_request.head.sha }}
103103
fetch-depth: 0
@@ -128,7 +128,7 @@ jobs:
128128
129129
- name: Checkout the pull request on Linux
130130
if: matrix.os == 'ubuntu-20.04'
131-
uses: actions/checkout@v3
131+
uses: actions/checkout@v4
132132
with:
133133
ref: ${{ github.event.pull_request.head.sha }}
134134
fetch-depth: 0

0 commit comments

Comments
 (0)