summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-08-14 23:46:34 +0100
committerLiliana Marie Prikler <liliana.prikler@gmail.com>2026-08-28 06:36:00 +0200
commit2d7118e724cc28e116114d2ab03b7befe5d9db9d (patch)
treeb7e6d237b644fe3ca49719e300441a65897c57f7
parenta6f240b7e07d1632ad8e30243560effd84099728 (diff)
gnu: Remove go-github-com-nektos-act.
* gnu/packages/golang-vcs.scm (go-github-com-nektos-act): Delete variable. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com> Merges: guix/guix#10565
-rw-r--r--gnu/packages/golang-vcs.scm110
1 files changed, 0 insertions, 110 deletions
diff --git a/gnu/packages/golang-vcs.scm b/gnu/packages/golang-vcs.scm
index eb87c1d57c2..d74be58bf26 100644
--- a/gnu/packages/golang-vcs.scm
+++ b/gnu/packages/golang-vcs.scm
@@ -508,116 +508,6 @@ values configuration, and can parse configurations include via
508supported yet.") 508supported yet.")
509 (license license:gpl2+))) 509 (license license:gpl2+)))
510 510
511;; TODO: Delete all node_modules in pkg/runner/testdata/actions.
512(define-public go-github-com-nektos-act
513 (package
514 (name "go-github-com-nektos-act")
515 (version "1.24.1")
516 (source
517 (origin
518 (method git-fetch)
519 (uri (git-reference
520 (url "https://code.forgejo.org/forgejo/act.git")
521 (commit (string-append "v" version))))
522 (file-name (git-file-name name version))
523 (sha256
524 (base32 "0fk5l44jycyzzlvxr0312ayns1rl15vl2kjc6nh726sjlghpa0d7"))))
525 (build-system go-build-system)
526 (arguments
527 (list
528 #:import-path "github.com/nektos/act"
529 #:embed-files #~(list ".*\\.json")
530 #:test-flags
531 #~(list "-skip" (string-join
532 ;; Network access is required.
533 (list "TestArtifactFlow/GHSL-2023-004"
534 "TestArtifactFlow/upload-and-download"
535 "TestFindGitRemoteURL"
536 "TestGitCloneExecutor"
537 "TestGitFindRef"
538 "TestHandler_gcCache"
539 "TestImageExistsLocally"
540 "TestHandler"
541 "TestJobExecutor"
542 ;; Running Docker is required.
543 "TestDocker"
544 ;; Something else...
545 "TestActionCache"
546 "TestInterpolate"
547 "TestRunContext_EvalBool"
548 "TestDryrunEvent"
549 "TestEvaluateRunContext/toJSON"
550 "TestEvaluateRunContext/toJson"
551 "TestGetGitHubContext"
552 "TestMaskValues"
553 "TestRunActionInputs"
554 "TestRunDifferentArchitecture"
555 "TestRunEvent"
556 "TestRunEventHostEnvironment"
557 "TestRunEventPullRequest"
558 "TestRunEventSecrets"
559 "TestRunMatrixWithUserDefinedInclusions"
560 "TestRunSkipped"
561 "TestRunWithService"
562 "TestSetupEnv"
563 "TestStepActionRemotePreThroughActionToken")
564 "|"))
565 #:phases
566 #~(modify-phases %standard-phases
567 ;; The buildkit dependency tree is *massive* and the only thing
568 ;; that's used is the dockerignore module, which is just an alias to
569 ;; github.com/moby/patternmatcher which this library already depends
570 ;; on!
571 (add-after 'unpack 'fix-dockerignore
572 (lambda _
573 (substitute* "src/github.com/nektos/act/pkg/container/docker_build.go"
574 (("\"github.com/moby/buildkit/frontend/dockerfile/dockerignore\"")
575 "dockerignore \"github.com/moby/patternmatcher/ignorefile\"")))))))
576 (native-inputs
577 (list go-github-com-go-git-go-billy-v5
578 go-github-com-stretchr-testify
579 go-gotest-tools-v3))
580 (propagated-inputs
581 (list go-dario-cat-mergo
582 go-github-com-adrg-xdg
583 go-github-com-alecaivazis-survey-v2
584 go-github-com-andreaskoch-go-fswatch
585 go-github-com-creack-pty
586 go-github-com-distribution-reference
587 go-github-com-docker-cli
588 go-github-com-docker-distribution
589 go-github-com-docker-docker
590 go-github-com-docker-go-connections
591 go-github-com-go-git-go-git-v5
592 go-github-com-gobwas-glob
593 go-github-com-golang-jwt-jwt-v5
594 go-github-com-imdario-mergo
595 go-github-com-joho-godotenv
596 go-github-com-julienschmidt-httprouter
597 go-github-com-kballard-go-shellquote
598 go-github-com-masterminds-semver
599 go-github-com-mattn-go-isatty
600 go-github-com-moby-patternmatcher
601 go-github-com-opencontainers-image-spec
602 go-github-com-opencontainers-selinux
603 go-github-com-pkg-errors
604 go-github-com-rhysd-actionlint
605 go-github-com-sabhiram-go-gitignore
606 go-github-com-sirupsen-logrus
607 go-github-com-spf13-cobra
608 go-github-com-spf13-pflag
609 go-github-com-timshannon-bolthold
610 go-go-etcd-io-bbolt
611 go-golang-org-x-term
612 go-google-golang-org-protobuf
613 go-gopkg-in-yaml-v3))
614 (home-page "https://github.com/nektos/act")
615 (synopsis "Run GitHub Actions locally")
616 (description
617 "Helper tool to run @url{https://developer.github.com/actions/,GitHub
618Actions} locally.")
619 (license license:expat)))
620
621(define-public go-github-com-rhysd-actionlint 511(define-public go-github-com-rhysd-actionlint
622 (package 512 (package
623 (name "go-github-com-rhysd-actionlint") 513 (name "go-github-com-rhysd-actionlint")