Package Details: act 0.2.45-1

Git Clone URL: https://aur.archlinux.org/act.git (read-only, click to copy)
Package Base: act
Description: Run your GitHub Actions locally
Upstream URL: https://github.com/nektos/act
Keywords: github-actions
Licenses: MIT
Submitter: SirWindfield
Maintainer: flipee
Last Packager: flipee
Votes: 23
Popularity: 1.91
First Submitted: 2019-09-04 12:14 (UTC)
Last Updated: 2023-05-02 14:29 (UTC)

Latest Comments

fanninpm commented on 2021-04-20 22:08 (UTC)

@Svenstaro see https://aur.archlinux.org/packages/act-bin/

jaysonsantos commented on 2021-04-19 09:23 (UTC)

Could you update this package? Here is the patch to update it

diff --git a/.SRCINFO b/.SRCINFO
index 6969525..0a5f744 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,15 +1,14 @@
 pkgbase = act
    pkgdesc = Run your GitHub Actions locally
-   pkgver = 0.2.19
-   pkgrel = 1
+   pkgver = 0.2.21
+   pkgrel = 0
    url = https://github.com/nektos/act
    arch = x86_64
    license = MIT
-   depends = docker
    provides = act
    conflicts = act
-   source = act-0.2.19.src.tar.gz::https://github.com/nektos/act/releases/download/v0.2.19/act_Linux_x86_64.tar.gz
-   sha256sums = be52d1cb8cc5d2f9313ed1001807911ba3fed7a8201b96cc930ddd0ebef21dff
+   source = act-0.2.21.src.tar.gz::https://github.com/nektos/act/releases/download/v0.2.21/act_Linux_x86_64.tar.gz
+   sha256sums = 6519ceb385b55c6fc936eaa00a44413d425a8c2f78204756a00980098935dfde

 pkgname = act

diff --git a/PKGBUILD b/PKGBUILD
index 6aaf5f8..939cd14 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,17 +1,16 @@
 # Maintainer: Sven Lechner <sven[dot]lechner[at]rwth-aachen[dot]de>

 pkgname=act
-pkgver=0.2.19
-pkgrel=1
+pkgver=0.2.21
+pkgrel=0
 pkgdesc='Run your GitHub Actions locally'
 arch=('x86_64')
 url='https://github.com/nektos/act'
 license=('MIT')
 provides=('act')
 conflicts=('act')
-depends=('docker')
 source=("$pkgname-$pkgver.src.tar.gz::https://github.com/nektos/act/releases/download/v$pkgver/act_Linux_x86_64.tar.gz")
-sha256sums=('be52d1cb8cc5d2f9313ed1001807911ba3fed7a8201b96cc930ddd0ebef21dff')
+sha256sums=('6519ceb385b55c6fc936eaa00a44413d425a8c2f78204756a00980098935dfde')

 package() {
     # Install binary.

ejiek commented on 2021-04-06 13:39 (UTC)

Here is my attempted to actually build it from source.

Svenstaro commented on 2021-02-28 01:33 (UTC)

This PKGBUILD is currently breaking guidelines as it installs a binary without being named -bin. I suggest you make a new package and call it act-bin and then change this package to build from source.

lberrymage commented on 2020-08-15 08:21 (UTC)

Could you add docker as a dependency please? Thanks.