runner-images VS paths-filter

Compare runner-images vs paths-filter and see what are their differences.

paths-filter

Conditionally run actions based on files modified by PR, feature branch or pushed commits (by dorny)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
runner-images paths-filter
54 8
9,292 1,919
2.3% -
9.8 5.7
5 days ago 9 days ago
PowerShell TypeScript
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

runner-images

Posts with mentions or reviews of runner-images. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-05-22.
  • GitHub Actions are randomly failing
    1 project | news.ycombinator.com | 29 May 2024
  • Creating new Perl composite actions from a repository template
    2 projects | dev.to | 22 May 2024
    So you want to create a quick-and-dirty GitHub actions that does only one thing and does it well, or glues together several actions, or simply to show off a bit at your next work interview. Here's how you can do it. Let me introduce you to composite GitHub actions, one of the three types that are there (the other are JavaScript GHAs or container-based GHAs) and maybe one of the most widely unknown. However, they have several things going for them. First, they have low latency: no need to download a container or to set up some JS environment). Second, they are relatively easy to set up: they can be self-contained, with everything needed running directly on the description of the GitHub action. Third, you can leverage all the tools installed on the runner like bash, compilers, build tools... or Perl, which can be that and much more. Even being easy, it is even easier if you have a bit of boilerplate you can use directly or adapt to your own purposes. This is what has guided the creation of the template for a composite GitHub action based on Perl. It is quite minimalistic. But let me walk you through what it has got so that you can use it easier
  • Github Actions to deploy your Terraform code
    1 project | dev.to | 21 May 2024
    I used the “ubuntu-latest” image which is Debian-based (with apt) and commonly available in the Github Actions workers, so it deploys very fast.
  • Show HN: Managed GitHub Actions Runners for AWS
    6 projects | news.ycombinator.com | 4 Apr 2024
    Yeah this is a good option if you'd like something to deploy yourself! You can also build an AMI from GitHub's upstream image definition (https://github.com/actions/runner-images/tree/main/images/ub...) if you'd like it to match what's available in GitHub-hosted Actions.

    With Depot, we're moving towards deeper performance optimizations and observability than vanilla GitHub runners - we've integrated the runners with a cache storage cluster for instance, and we're working on deeper integration with the compute platform that we built for distributed container image builds - as well as expanding the types of builds we can process beyond Actions and Docker, for instance.

    But different options will be better for different folks, and the `philips-labs` project is good at what it does.

  • GitHub switched to Docker Compose v2, action needed
    2 projects | news.ycombinator.com | 3 Apr 2024
  • We Executed a Critical Supply Chain Attack on PyTorch
    6 projects | news.ycombinator.com | 14 Jan 2024
    Whoa, there's a lot of stuff in there [1] that gets installed straight from vendors, without pinning content checksums to a value known-good to Github.

    I get it, they want to have the latest versions instead of depending on how long Ubuntu (or, worse, Debian) package maintainers take to package stuff into their mainline repositories... but this attack surface is nuts.

    [1] https://github.com/actions/runner-images/tree/main/images/ub...

  • Terraform module for scalable GitHub action runners on AWS
    6 projects | news.ycombinator.com | 8 Dec 2023
    I had a similar experience with ARC (actions-runner-controller).

    One of the machines in the fleet failed to sync its clock via NTP. Once a job X got scheduled to it, the runner pod failed authentication due to incorrect clock time, and then the whole ARC system started to behave incorrectly: job X was stuck without runners, until another workflow job Y was created, and then X got run but Y became stuck. There were also other wierd behaviors like this so I eventually rebuilt everything based on VMs and stopped using ARC.

    Using VMs also allowed me to support the use of the official runner images [0], which is good for compatibility.

    I feel more people would benefit from managed "self-hosted" runners, so I started DimeRun [1] to provide cheaper GHA runners for people who don't have the time/willingness to troubleshoot low-level infra issues.

    [0]: https://github.com/actions/runner-images

  • Apple Silicon (M1) powered macOS runners are now available in public beta
    1 project | news.ycombinator.com | 2 Oct 2023
  • macOS Containers v0.0.1
    24 projects | news.ycombinator.com | 26 Sep 2023
    Reminds me: Still waiting for native ARM support on GitHub Actions https://github.com/actions/runner-images/issues/5631
  • Question on using Linux Self Hosted Agents with VMSS
    1 project | /r/azuredevops | 19 Jul 2023
    Used https://github.com/actions/runner-images to get the packages needed for Ubuntu 22.04 As the packer requires a builder, I used "null" builder to set it as localhost ref: https://developer.hashicorp.com/packer/docs/builders/null (It was way difficult to figure it out the 1st time) I had to modify the .pkr.hcl file to pick my provisioners. I could not understand the use of /opt/hostedtoolcache folder (which I did later)

paths-filter

Posts with mentions or reviews of paths-filter. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-16.
  • How to commit part of file in Git
    2 projects | news.ycombinator.com | 16 Feb 2024
    I also set up recently the policy to onl use merge commits on stable branch, as otherwise the path filter^1 in the workflows would not detect correctly which files changed in a PR.

    [1] https://github.com/dorny/paths-filter

  • GitHub Actions as a time-sharing supercomputer
    4 projects | news.ycombinator.com | 10 Jan 2024
    I truly don't understand why this isn't more widely discussed (I've seen several "GH Actions Gotchas" where this isn't mentioned). Many of the community actions also seem to be designed to run as short jobs to paper around missing features (for ex: https://github.com/dorny/paths-filter ), that end up eating up an enormous amount of your minutes budget.
  • Deploy Lambda only when there are code changes
    2 projects | /r/aws | 1 Mar 2023
    If that isn’t sufficient, there are a number of third party workflow steps that enable conditional builds with extra flexibility like https://github.com/dorny/paths-filter
  • Is there a GitHub Actions equivalent to CircleCI dynamic config?
    2 projects | /r/devops | 22 Jan 2023
    You can use paths-filter to give yourself a bunch of conditional outputs to test against for separate jobs.
  • Turborepo + GitHub Actions
    2 projects | /r/node | 17 Dec 2022
    That's brilliant. dorny/paths-filter looks like it can eliminate my enumerate job, and then I don't have to concern myself with all this data passing between jobs.
  • GitHub Actions Pitfalls
    11 projects | news.ycombinator.com | 26 Sep 2022
    There’s an awkward gotcha/incompatibility between “Required status checks” and workflows that get skipped [1], eg due to setting a “paths” property of a push/pull_request workflow trigger [2].

    The checks associated with the workflow don’t run and stay in a pending state, preventing the PR from being merged.

    The only workaround I’m aware of is to use an action such as paths-filter [3] instead at the job level.

    A further, related frustration/limitation - you can _only_ set the “paths” property [2] at the workflow level (i.e. not per-job), so those rules apply to all jobs in the workflow. Given that you can only build a DAG of jobs (ie “needs”) within a single workflow, it makes it quite difficult to do anything non trivial in a monorepo.

    [1]: https://docs.github.com/en/repositories/configuring-branches...

    [2]: https://docs.github.com/en/actions/using-workflows/workflow-...

    [3]: https://github.com/dorny/paths-filter

  • Configuring python linting to be part of CI/CD using GitHub actions
    4 projects | dev.to | 14 Sep 2022
    We are interested in running a linter only against the modified files. Let's say, we take a look at the provided repo, if I update dags/dummy.py I don't want to waste time and resources running the linter against main.py. For this purpose we use Paths Filter GitHub Action, which is very flexible.
  • Introducing Gistblog 🎉: Blog your little ❤️ out using GitHub Gists
    4 projects | dev.to | 6 Dec 2021
    In the spirit of the #ActionsHackathon21, you can see I'm taking advantage of the checkout action GitHub provides and the Paths Filter action by dorny to create the desired workflow. I'm also using the Gistblog Action I created for this hackathon which handles managing all the blog posts as Gists. I'd like to explore Composite actions soon to see if I can reduce all of this to a single action making setup even easier.

What are some alternatives?

When comparing runner-images and paths-filter you can also consider the following projects:

jellyscrub - Smooth mouse-over video scrubbing previews for Jellyfin.

changed-files - :octocat: Github action to retrieve all (added, copied, modified, deleted, renamed, type changed, unmerged, unknown) files and directories.

actionlint - :octocat: Static checker for GitHub Actions workflow files

json-tidy - Pretty prints JSON from stdin, files, or URLs

test-reporter - Displays test results from popular testing frameworks directly in GitHub

combine-prs-workflow - Combine/group together PRs (for example from Dependabot and similar services)

travis-yml - Travis CI build config processing

just - 🤖 Just a command runner

gh-valet - Valet helps facilitate the migration of Azure DevOps, CircleCI, GitLab CI, Jenkins, and Travis CI pipelines to GitHub Actions.

pretty - Efficient JSON beautifier and compactor for Go

gistblog-action - Blog your little ❤️ out using GitHub Gists.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured