gnucash master: Update Github checkout action
John Ralls
jralls at code.gnucash.org
Thu Mar 2 20:37:36 EST 2023
Updated via https://github.com/Gnucash/gnucash/commit/0be0b7e5 (commit)
from https://github.com/Gnucash/gnucash/commit/1eecb9f5 (commit)
commit 0be0b7e5a8b8dcac323e7cf85954faa958e41617
Author: John Ralls <jralls at ceridwen.us>
Date: Thu Mar 2 17:34:39 2023 -0800
Update Github checkout action
Resolves node.js V12 deprecation warning.
diff --git a/.github/workflows/ci-docker.yml b/.github/workflows/ci-docker.yml
index 707f08e48..5562df53a 100644
--- a/.github/workflows/ci-docker.yml
+++ b/.github/workflows/ci-docker.yml
@@ -7,7 +7,7 @@ jobs:
name: Arch Linux (via Docker) CI
steps:
- name: Checkout
- uses: actions/checkout at v2
+ uses: actions/checkout at v3
- name: Test Action
uses: ./util/ci/actions/archlinux-test
- uses: actions/upload-artifact at v2
diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml
index c8f36515a..e9f2f4412 100644
--- a/.github/workflows/ci-tests.yml
+++ b/.github/workflows/ci-tests.yml
@@ -9,7 +9,7 @@ jobs:
TZ: America/Los_Angeles
steps:
- name: Checkout
- uses: actions/checkout at v2
+ uses: actions/checkout at v3
- run: sudo apt-get update
- name: Install additional dependencies
run: sudo apt-get install -y gettext cmake libxslt-dev xsltproc ninja-build libboost-all-dev libgtk-3-dev guile-2.2-dev libgwengui-gtk3-dev libaqbanking-dev libofx-dev libdbi-dev libdbd-sqlite3 libwebkit2gtk-4.0-dev googletest
diff --git a/.github/workflows/mac-tests.yaml b/.github/workflows/mac-tests.yaml
index 069d97e27..6816a1ff7 100644
--- a/.github/workflows/mac-tests.yaml
+++ b/.github/workflows/mac-tests.yaml
@@ -9,7 +9,7 @@ jobs:
TZ: America/Los_Angeles
steps:
- name: Checkout
- uses: actions/checkout at v2
+ uses: actions/checkout at v3
- run: |
echo "PATH=$PATH:$HOME/gnucash/inst/bin" >> $GITHUB_ENV
echo "PREFIX=$HOME/gnucash/inst" >> $GITHUB_ENV
Summary of changes:
.github/workflows/ci-docker.yml | 2 +-
.github/workflows/ci-tests.yml | 2 +-
.github/workflows/mac-tests.yaml | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
More information about the gnucash-changes
mailing list