From 1bc585e5fdebf5fef528c7676a3fcdfe73d89aa6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Sch=C3=BCller?= Date: Fri, 27 Sep 2024 19:35:50 +0200 Subject: [PATCH] github/workflows/test-osbuild-composer-intergation: fix integration test Due to https://github.com/osbuild/osbuild-composer/commit/7bdd0363 "replace-allow-list" is now already in `.golangci.yml` and should not be added twice or the tests fail --- .github/workflows/test-osbuild-composer-intergation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-osbuild-composer-intergation.yml b/.github/workflows/test-osbuild-composer-intergation.yml index 7b0489b939..703cd66ad9 100644 --- a/.github/workflows/test-osbuild-composer-intergation.yml +++ b/.github/workflows/test-osbuild-composer-intergation.yml @@ -78,7 +78,7 @@ jobs: - name: Allow replacing the osbuild/images module in .golangci.yml working-directory: osbuild-composer run: | - awk '/replace-local: false/ {print " replace-local: true"; print " replace-allow-list:\n - github.com/osbuild/images"; next} 1' .golangci.yml > .golangci.yml.new + awk '/replace-local: false/ {print " replace-local: true"; next} 1' .golangci.yml > .golangci.yml.new mv .golangci.yml.new .golangci.yml - name: Apt update