40 lines
1.3 KiB
Diff
40 lines
1.3 KiB
Diff
From 205042e70b50cdd688b3891cca53c90859597df6 Mon Sep 17 00:00:00 2001
|
|
From: Johannes Schindelin <johannes.schindelin@gmx.de>
|
|
Date: Tue, 8 Nov 2022 17:05:57 +0100
|
|
Subject: [PATCH 42/N] ci: avoid using Node.js 12 Actions
|
|
|
|
As mentioned in
|
|
https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/
|
|
GitHub workflows should avoid using Actions that use Node.js 12 and
|
|
instead upgrade to versions of those Actions that use Node.js 16.
|
|
|
|
So let's do that.
|
|
|
|
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
|
|
---
|
|
.github/workflows/build.yaml | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
|
|
index 4e1d498..5069dbd 100644
|
|
--- a/.github/workflows/build.yaml
|
|
+++ b/.github/workflows/build.yaml
|
|
@@ -8,7 +8,7 @@ jobs:
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
- uses: actions/checkout@v2
|
|
+ uses: actions/checkout@v3
|
|
|
|
- name: setup-msys2
|
|
uses: msys2/setup-msys2@v2
|
|
@@ -30,7 +30,7 @@ jobs:
|
|
make DESTDIR="$(pwd)"/_dest install
|
|
|
|
- name: Upload
|
|
- uses: actions/upload-artifact@v2
|
|
+ uses: actions/upload-artifact@v3
|
|
with:
|
|
name: install
|
|
path: _dest/
|