Skip to content

Commit

Permalink
github/workflows/test-osbuild-composer-intergation: fix integration test
Browse files Browse the repository at this point in the history
Due to osbuild/osbuild-composer@7bdd0363
"replace-allow-list" is now already in `.golangci.yml` and should
not be added twice or the tests fail
  • Loading branch information
schuellerf authored and achilleas-k committed Sep 27, 2024
1 parent 840877c commit 1bc585e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-osbuild-composer-intergation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1bc585e

Please sign in to comment.