mirror of
https://github.com/nektos/act.git
synced 2026-04-26 01:15:51 +03:00
[GH-ISSUE #814] Issue: act does not seem to rebuild docker images for local actions #499
Labels
No labels
area/action
area/cli
area/docs
area/image
area/runner
area/workflow
backlog
confirmed/not-planned
kind/bug
kind/discussion
kind/external
kind/feature-request
kind/question
meta/duplicate
meta/invalid
meta/need-more-info
meta/resolved
meta/wontfix
meta/workaround
needs-work
pull-request
review/not-planned
size/M
size/XL
size/XXL
stale
stale-exempt
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/act#499
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @henrikrudstrom on GitHub (Sep 13, 2021).
Original GitHub issue: https://github.com/nektos/act/issues/814
System information
act: < can be omitted if it's included in log >actversion: 0.2.24Expected behaviour
i have a github workflow that references several local actions:
These actions use a common docker file:
i would expect this to run fine with
act -b pull_requestActual behaviour
Verbose output:
act -b -v pull_request@ChristopherHX commented on GitHub (Sep 13, 2021):
Related to https://github.com/nektos/act/issues/739
You are using
image: '../../Dockerfile'which is broken / not supported in act and might cause docker build to error out.@github-actions[bot] commented on GitHub (Oct 14, 2021):
Issue is stale and will be closed in 14 days unless there is new activity
@L-Sypniewski commented on GitHub (Aug 9, 2022):
I'm having the same issue and my image path doesn't use relative paths:
It looks like act has cached an image and cannot pull the latest one. When I run act with
--pullflag I get the following erorr:Error response from daemon: pull access denied for act-l-sypniewski-github-pr-changes-checker-action-master-dockeraction, repository does not exist or may require 'docker login': denied: requested access to the resource is denied. Everything works fine on Github Actions.Here's a repo that I work on: https://github.com/L-Sypniewski/github-pr-changes-checker-action/
My act version: 0.2.30
MacOS version: 12.4 (21F79)
@DawidNiezgodka commented on GitHub (Feb 26, 2023):
@L-Sypniewski Did you manage to solve the problem?
@L-Sypniewski commented on GitHub (Feb 27, 2023):
@DawidNiezgodka No, I used docker-compose for local testing. I've just checked and I'm having the same issue with version 0.2.42
@ChristopherHX commented on GitHub (Feb 27, 2023):
The
--pulldocker action problem has been fixed via https://github.com/nektos/act/pull/1599Needs version 0.2.43 (to be released on 1. March 2023 by scheduled cron workflow)
Your bug report about
--pull(now defaults to true) got lost in this unrelated issue--rebuildnow defaults to true so docker actions should be rebuild in 0.2.43 without adding cli flags.@loeken commented on GitHub (Mar 11, 2023):
https://aur.archlinux.org/packages/act @ChristopherHX have there been issues with the release i can only see 0.2.42 in aur
@catthehacker commented on GitHub (Mar 11, 2023):
@loeken we do not manage AUR package, you should ask package maintainer to update it
@guettli commented on GitHub (Jun 16, 2023):
I confirm: updating to
0.2.46fixed the issue.