#github-actions (2024-05)

Discussions related to GitHub Actions

2024-05-02

actions Archives - The GitHub Blog avatar
actions Archives - The GitHub Blog
04:35:37 PM

Artifact Attestations public beta Artifact Attestations public beta The post Artifact Attestations public beta appeared first on The GitHub Blog.

Artifact Attestations public beta

Artifact Attestations public beta

The GitHub Blog - Updates, ideas, and inspiration from GitHub to help developers build and design software.

Updates, ideas, and inspiration from GitHub to help developers build and design software.

actions Archives - The GitHub Blog avatar
actions Archives - The GitHub Blog
05:05:34 PM
Dependabot pull requests jobs are now available to run on self hosted Actions runners

Dependabot pull requests jobs are now available to run on self hosted Actions runners

2024-05-03

2024-05-07

actions Archives - The GitHub Blog avatar
actions Archives - The GitHub Blog
06:55:34 PM

Actions: New region support for Azure private networking Actions: New region support for Azure private networking The post Actions: New region support for Azure private networking appeared first on The GitHub Blog.

Actions: New region support for Azure private networking

Actions: New region support for Azure private networking

The GitHub Blog - Updates, ideas, and inspiration from GitHub to help developers build and design software.

Updates, ideas, and inspiration from GitHub to help developers build and design software.

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

Gah! just give me folder support for my workflows already….

2024-05-14

actions Archives - The GitHub Blog avatar
actions Archives - The GitHub Blog
04:25:33 PM
GitHub-hosted runners: Public Beta of Ubuntu 24.04 is now available

GitHub-hosted runners: Public Beta of Ubuntu 24.04 is now available

The GitHub Blog - Updates, ideas, and inspiration from GitHub to help developers build and design software.

Updates, ideas, and inspiration from GitHub to help developers build and design software.

Enrique Lopez avatar
Enrique Lopez

Hi everybody wave new in the community, I was making a github action workflow that executes playwright tests, but then we realized that some of the endpoints are not exposed to internet, so my challenge now is to make a workflow_dispatch in github action that can trigger a workflow in AWS codepipeline (because here the endpoints are accessible), for that also I need to send some env variables declared in the workflow to codepipeline, have you guys done something like that? any document I can read to get more insights on how to achieve my goal?

PiotrP avatar

I would probably create w workflow with following steps: • configure aws creds using this action • trigger pipeline with aws cli and used --variables to pass some envs form gha to codepipeline never done this, though, so might miss something

1
Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

We use self-hosted GHA runners, deployed within VPCs. That way don’t have these problems.

1
1
Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

For EKS, we use ARC - actions runner controller.

1
Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)
philips-labs/terraform-aws-github-runner

Terraform module for scalable GitHub action runners on AWS

1
Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

Lastly, just last month AWS announced this, but we haven’t tried it yet. https://aws.amazon.com/about-aws/whats-new/2024/04/aws-codebuild-managed-github-action-runners/

1
Enrique Lopez avatar
Enrique Lopez

@Erik Osterman (Cloud Posse) that sounds really interesting, sadly I haven’t done that before, thanks for sharing Erik

Enrique Lopez avatar
Enrique Lopez

do you have any other doc or link with some real example I can refer to?

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

All of it’s documented in our paid/commercial reference architecture

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

Which approach is most appealing? Maybe I can link you to something public

Enrique Lopez avatar
Enrique Lopez

Looks like the idea of having a self hosted runner is the better since it allows to keep everything in github actions, sounds cleaner

Enrique Lopez avatar
Enrique Lopez

@Erik Osterman (Cloud Posse) BTW, I received this comment form someone in my team when I suggested using self hosted runners:
I don’t think it’s a good idea to open any sort of direct network communication between GitHub and AWS private VPCs.
I don’t think that’s a valid concern since we are already using aws credentials in github, so to me the security concerns are already being shared between github and aws, but what do you think guys I can respond to be consice and claer and get allowed

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

Are you free to join #office-hours ?

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

First problem, stop using any AWS credentials on GitHub. Use GitHub OIDC and IAM roles, so there are no hardcoded credentials.

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

Using CodeBuild/CodePipeline + GitHub is Identical to using GitHub + Self-hosted Runners, from a security/attack surface.

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

You need to test your software. Your software is on GitHub. You need to test your software on AWS where it will run. I don’t see a world (with end-to-end automation) where these two things are disjoint.

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

You should already have dev/staging/production, in entirely different AWS accounts.

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

Your CI technically, only needs access to test it in one of those accounts (or some other testing account).

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

Fwiw, dozens of our customers use this exact pattern, this is the first time I’ve heard the concern. Self-hosted runners is usually an enterprise requirement rather than concern.

1

2024-05-15

2024-05-16

actions Archives - The GitHub Blog avatar
actions Archives - The GitHub Blog
02:25:36 PM

New dates for Actions larger runner multi-label deprecation New dates for Actions larger runner multi-label deprecation The post New dates for Actions larger runner multi-label deprecation appeared first on The GitHub Blog.

New dates for Actions larger runner multi-label deprecation

New dates for Actions larger runner multi-label deprecation

The GitHub Blog - Updates, ideas, and inspiration from GitHub to help developers build and design software.

Updates, ideas, and inspiration from GitHub to help developers build and design software.

Erik Osterman (Cloud Posse) avatar
Erik Osterman (Cloud Posse)

ostermanweekend

1
    keyboard_arrow_up