30
top 8 comments
sorted by: hot top new old
[-] ultimate_worrier@lemmy.dbzer0.com 9 points 1 week ago* (last edited 1 week ago)

The solution is simple: stop using Github actions. If you simply must run CI, run it on a local machine or VM that is sandboxed.

[-] Maxxie@piefed.blahaj.zone 6 points 1 week ago

Running actions on your own machine doesn't solve cache poisoning or supply chain attacks, your VM will download compromised npm package or github actions the same way GH runner does.

Version pinning/script disabling makes a compromise slightly less likely, rolling your own package server helps a lot (but who got time to maintain version whitelist).

Honestly the best solution is to have minimum amount of dependencies. You don't need a GH action to ping indexers or generic foreign key library for your backed, hammer one yourself.

That and scope all your keys so the leak won't be as devastating ๐Ÿคทโ€โ™€๏ธ

[-] lauha@lemmy.world 3 points 1 week ago

Honestly the best solution is to have minimum amount of dependencies.

Isn't this a sane practice in programming anyway? Just don't go overboard with dependency minimalism.

[-] Piatro@programming.dev 2 points 1 week ago

Yes but the reality of JavaScript codebases is that you'll typically import hundreds if not thousands of dependencies fairly quickly. Last time I looked at the UI codebase at my job it was sitting at over 40k.

[-] lauha@lemmy.world 2 points 1 week ago

That's one of the reasons) why JS development is the shitshow it is.

[-] Maxxie@piefed.blahaj.zone 1 points 1 week ago

IDK how other people are, but to me solving a problem with a single #include just feels right. Less code to maintain, responsibility is shifted to a dedicated person, obviously much faster.. But also constant anxiety and daily monitoring of security blogs, so I'm trying to cut back

[-] onlinepersona@programming.dev 1 points 1 week ago

How do you run it on a local machine?

[-] cockmushroom@reddthat.com 5 points 1 week ago

The ๐Ÿ‘ death ๐Ÿ‘ of ๐Ÿ‘ github ๐Ÿ‘ will ๐Ÿ‘ never ๐Ÿ‘ be ๐Ÿ‘ the ๐Ÿ‘ death ๐Ÿ‘ of ๐Ÿ‘ open ๐Ÿ‘ source

this post was submitted on 17 May 2026
30 points (96.9% liked)

Security

2083 readers
10 users here now

A community for discussion about cybersecurity, hacking, cybersecurity news, exploits, bounties etc.

Rules :

  1. All instance-wide rules apply.
  2. Keep it totally legal.
  3. Remember the human, be civil.
  4. Be helpful, don't be rude.

Icon base by Delapouite under CC BY 3.0 with modifications to add a gradient

founded 2 years ago
MODERATORS