Merge pull request #1243 from JasonYangShadow/hotfix_add_go_tidy

run go mod tidy after go mod vendor
This commit is contained in:
Christian Goll
2024-06-07 10:18:06 +02:00
committed by GitHub
2 changed files with 5 additions and 0 deletions

View File

@@ -29,3 +29,7 @@ runs:
- name: Prepare vendor directory - name: Prepare vendor directory
run: make vendor run: make vendor
shell: bash shell: bash
- name: Run go mod tidy
run: make tidy
shell: bash

View File

@@ -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 - `wwctl container import` now only runs syncuser if explicitly requested. #1212
- wwinit now configures NetworkManager to not retain configurations from dracut. #1115 - wwinit now configures NetworkManager to not retain configurations from dracut. #1115
- Improved detection of SELinux capable root fs #1093 - Improved detection of SELinux capable root fs #1093
- Run `go mod tidy` after `go mod vendor`
### Fixed ### Fixed