From 946603e2f455a4ba3124b260e1f83664baad30b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Van=C3=AD=C4=8Dek?= Date: Mon, 31 Jul 2023 15:34:26 +0200 Subject: [PATCH] Use latest that includes fix https://github.com/nektos/act/pull/1928 --- .drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 669193f..31ad411 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,16 +3,16 @@ name: default steps: - name: act - image: golang:1.19 + image: golang:1.20 commands: - - git clone -b v0.2.41 https://github.com/nektos/act.git && cd act + - git clone https://github.com/nektos/act.git && cd act - export ACT_VERSION=$(git describe --tags --dirty --always | sed -e 's/^v//') - git apply ../patches/001-workdir-bind.patch - mkdir bin - CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags "-X main.version=$ACT_VERSION" -o bin/act main.go - name: build - image: golang:1.19 + image: golang:1.20 commands: - go test ./... - sh scripts/build.sh