From e5f6fa5a05b18a18600da0fa332923a8a7d7d917 Mon Sep 17 00:00:00 2001 From: xu yang Date: Fri, 7 Jun 2024 05:56:16 +0000 Subject: [PATCH] run go mod tidy after go mod vendor Signed-off-by: xu yang --- .github/actions/prepare/action.yml | 4 ++++ CHANGELOG.md | 1 + 2 files changed, 5 insertions(+) diff --git a/.github/actions/prepare/action.yml b/.github/actions/prepare/action.yml index 4ddca7c0..e3d0ee0e 100644 --- a/.github/actions/prepare/action.yml +++ b/.github/actions/prepare/action.yml @@ -29,3 +29,7 @@ runs: - name: Prepare vendor directory run: make vendor shell: bash + + - name: Run go mod tidy + run: make tidy + shell: bash diff --git a/CHANGELOG.md b/CHANGELOG.md index b44547f2..73802bb0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -51,6 +51,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - `wwctl container import` now only runs syncuser if explicitly requested. #1212 - wwinit now configures NetworkManager to not retain configurations from dracut. #1115 - Improved detection of SELinux capable root fs #1093 +- Run `go mod tidy` after `go mod vendor` ### Fixed