Skip to content

Commit 66facb9

Browse files
committed
CI: Update actions
[why] Some actions still run with Node16. Signed-off-by: Fini Jastrow <[email protected]>
1 parent afd3e45 commit 66facb9

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/ci.yaml

+11-11
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: |
3232
echo "CASCADIATAG=${{ fromJson(steps.get_latest_release.outputs.data).tag_name }}" >> $GITHUB_ENV
3333
- name: Check if tag exists
34-
uses: mukunku/tag-exists-action@v1.2.0
34+
uses: mukunku/tag-exists-action@v1.6.0
3535
id: check_tag
3636
with:
3737
tag: ${{ env.CASCADIATAG }}
@@ -50,7 +50,7 @@ jobs:
5050
CASCADIATAG_ISNOTNEW: ${{ needs.check-for-new-cascadia.outputs.tag_exists }}
5151

5252
steps:
53-
- uses: actions/checkout@v3
53+
- uses: actions/checkout@v4
5454
with:
5555
fetch-depth: 0
5656
- name: Decide on version
@@ -65,7 +65,7 @@ jobs:
6565
fi
6666
echo "OURVERSION=${OURVERSION}" >> $GITHUB_ENV
6767
- name: Download latest version of Cascadia
68-
uses: robinraju/release-downloader@v1.7
68+
uses: robinraju/release-downloader@v1.10
6969
with:
7070
repository: "microsoft/cascadia-code"
7171
tag: ${{ needs.check-for-new-cascadia.outputs.tag_name }}
@@ -91,7 +91,7 @@ jobs:
9191
fontforge --version
9292
9393
- name: Get Font Patcher
94-
uses: robinraju/release-downloader@v1.5
94+
uses: robinraju/release-downloader@v1.10
9595
with:
9696
repository: "ryanoasis/nerd-fonts"
9797
latest: true
@@ -164,31 +164,31 @@ jobs:
164164
- name: Check for preexisting glyphs
165165
run: |
166166
grep 'Found existing' process*.log | grep -vE ' Powerline(Extra)?Symbols>'
167-
- uses: actions/upload-artifact@v3
167+
- uses: actions/upload-artifact@v4
168168
with:
169169
name: Delugia Powerline
170170
path: "delugia-powerline"
171-
- uses: actions/upload-artifact@v3
171+
- uses: actions/upload-artifact@v4
172172
with:
173173
name: Delugia Mono Powerline
174174
path: "delugia-mono-powerline"
175-
- uses: actions/upload-artifact@v3
175+
- uses: actions/upload-artifact@v4
176176
with:
177177
name: Delugia Complete
178178
path: "delugia-complete"
179-
- uses: actions/upload-artifact@v3
179+
- uses: actions/upload-artifact@v4
180180
with:
181181
name: Delugia Mono Complete
182182
path: "delugia-mono-complete"
183-
- uses: actions/upload-artifact@v3
183+
- uses: actions/upload-artifact@v4
184184
with:
185185
name: Delugia Book
186186
path: "delugia-book"
187187

188188
# Release part
189189
- name: Create tag
190190
if: ${{ github.event_name != 'pull_request' && !startsWith(github.ref, 'refs/tags/') && needs.check-for-new-cascadia.outputs.tag_exists != 'true' }}
191-
uses: actions/github-script@v6
191+
uses: actions/github-script@v7
192192
with:
193193
github-token: ${{ github.token }}
194194
script: |
@@ -214,7 +214,7 @@ jobs:
214214
if: ${{ startsWith(github.ref, 'refs/tags/') }}
215215
uses: battila7/get-version-action@v2
216216
- name: Release
217-
uses: softprops/action-gh-release@v1
217+
uses: softprops/action-gh-release@v2
218218
if: ${{ github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/') || needs.check-for-new-cascadia.outputs.tag_exists != 'true') }}
219219
with:
220220
tag_name: ${{ startsWith(github.ref, 'refs/tags/') && steps.get_tag_name.outputs.version || needs.check-for-new-cascadia.outputs.tag_name }}

0 commit comments

Comments
 (0)