From 1048c14ce62fc123fa70fb3e5f0d838d60d3c3de Mon Sep 17 00:00:00 2001 From: Shaunak Kashyap Date: Tue, 3 Jun 2025 09:57:47 -0700 Subject: [PATCH 1/3] Update command used by Dependabot to update NOTICE files --- .github/workflows/post-dependabot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/post-dependabot.yml b/.github/workflows/post-dependabot.yml index a212229e4e..e4001c706f 100644 --- a/.github/workflows/post-dependabot.yml +++ b/.github/workflows/post-dependabot.yml @@ -22,8 +22,8 @@ jobs: with: go-version-file: .go-version - - name: update NOTICE.txt - run: make notice + - name: update NOTICE.txt and NOTICE-FIPS.txt + run: mage check-notice - name: run go mod tidy in testing/ run: cd testing; go mod tidy From c196a4aeb92c2b2a8314f4345955b692159e39e4 Mon Sep 17 00:00:00 2001 From: Shaunak Kashyap Date: Tue, 3 Jun 2025 10:10:02 -0700 Subject: [PATCH 2/3] Fix command --- .github/workflows/post-dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/post-dependabot.yml b/.github/workflows/post-dependabot.yml index e4001c706f..68f35ec283 100644 --- a/.github/workflows/post-dependabot.yml +++ b/.github/workflows/post-dependabot.yml @@ -23,7 +23,7 @@ jobs: go-version-file: .go-version - name: update NOTICE.txt and NOTICE-FIPS.txt - run: mage check-notice + run: mage check:notice - name: run go mod tidy in testing/ run: cd testing; go mod tidy From 28ef18dbe9e75712af811a6da7fa145b522bb462 Mon Sep 17 00:00:00 2001 From: Shaunak Kashyap Date: Tue, 3 Jun 2025 10:12:56 -0700 Subject: [PATCH 3/3] Install mage --- .github/workflows/post-dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/post-dependabot.yml b/.github/workflows/post-dependabot.yml index 68f35ec283..d93380ff8e 100644 --- a/.github/workflows/post-dependabot.yml +++ b/.github/workflows/post-dependabot.yml @@ -22,6 +22,10 @@ jobs: with: go-version-file: .go-version + - uses: magefile/mage-action@v3 + with: + install-only: true + - name: update NOTICE.txt and NOTICE-FIPS.txt run: mage check:notice