1
1
mirror of https://github.com/drone-plugins/github-actions synced 2024-11-15 02:56:25 +01:00

Merge pull request #8 from jimsheldon/act-0234

update act to v0.2.34
This commit is contained in:
Shubham Agrawal 2023-01-10 21:34:21 +05:30 committed by GitHub
commit 1642507b20
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 3 deletions

@ -25,4 +25,7 @@ steps:
username:
from_secret: docker_username
password:
from_secret: docker_password
from_secret: docker_password
when:
event:
- tag

@ -73,7 +73,7 @@ func main() {
cli.StringFlag{
Name: "action-image",
Usage: "Image to use for running github actions",
Value: "node:12-buster-slim",
Value: "node:16-buster-slim",
EnvVar: "PLUGIN_ACTION_IMAGE",
},
cli.StringFlag{

@ -3,7 +3,7 @@ FROM docker:dind
ENV DOCKER_HOST=unix:///var/run/docker.sock
RUN apk add --no-cache ca-certificates curl
RUN curl -s https://raw.githubusercontent.com/nektos/act/master/install.sh | sh -s v0.2.24
RUN curl -s https://raw.githubusercontent.com/nektos/act/master/install.sh | sh -s v0.2.34
ADD release/linux/amd64/plugin /bin/
ENTRYPOINT ["/usr/local/bin/dockerd-entrypoint.sh", "/bin/plugin"]