Skip to content

Commit

Permalink
chore(makefile) fix 'act' target with '--pull=false'
Browse files Browse the repository at this point in the history
See https://github.com/nektos/act#using-local-runner-images

    > The --pull flag is set to true by default due to a breaking on older
    > default docker images. This would pull the docker image everytime act is
    > executed.

    > Set --pull to false if a local docker image is needed
  • Loading branch information
thibaultcha committed Aug 23, 2023
1 parent d9ce69d commit a0eee46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ act-build:

.PHONY: act
act: act-build
@act --reuse
@act --reuse --pull=false

.PHONY: coverage
coverage:
Expand Down

0 comments on commit a0eee46

Please sign in to comment.