From 00184e635d32b741b1b07c00928d01294286969f Mon Sep 17 00:00:00 2001 From: ucar-tmeyer Date: Thu, 26 Dec 2024 08:51:39 -0800 Subject: [PATCH] Update update_NDM-v20.yml file to install SVN The yml file runs on ubuntu-latest which in Dec 2024 was the ubuntu-24.04 image which had to remove a number of default packages because the image was getting to large, which included SVN (subversion), so now we need to install this package before we can use it. https://github.com/actions/runner-images/issues/10636 --- .github/workflows/update_NDM-v20.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/update_NDM-v20.yml b/.github/workflows/update_NDM-v20.yml index 064b12260e..e648482c7b 100644 --- a/.github/workflows/update_NDM-v20.yml +++ b/.github/workflows/update_NDM-v20.yml @@ -11,6 +11,11 @@ jobs: environment: name: VLAB steps: + # Install svn since it is no longer included by default in ubuntu-latest (ubuntu-24.04 image) + - name: Install svn package + run: | + sudo apt-get update + sudo apt-get install subversion # Checkout this repo # this gets the latest code (and is run on the default branch) - name: Checkout awips2