Skip to content

Commit

Permalink
Update update_NDM-v20.yml file to install SVN
Browse files Browse the repository at this point in the history
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.

actions/runner-images#10636
  • Loading branch information
tiffanycmeyer13 committed Dec 26, 2024
1 parent 8fc4acf commit 00184e6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/update_NDM-v20.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 00184e6

Please sign in to comment.