Skip to main content
Filter by
Sorted by
Tagged with
5 votes
0 answers
78 views

I am experiencing an issue on macOS where two or more jobs running actions/checkout at the same time cause one of the jobs to hang indefinitely during checkout. What makes this even stranger is that ...
Gipfeli's user avatar
  • 417
-3 votes
0 answers
78 views

I'm trying to generate a TypeScript client from a Swagger/OpenAPI endpoint. Everything works fine on my local machine, but in GitHub Actions the Orval step randomly fails with a 403 Forbidden when it ...
Arnav's user avatar
  • 1
Best practices
0 votes
2 replies
17 views

If a contributer attaches an image in a github issue (or any other comment) it will be uploaded as is. If the image is large this results in poor usability of that post. Is there a way to shrink image ...
Fred's user avatar
  • 623
1 vote
1 answer
59 views

I'm making a flutter app for a client, and I'm currently setting up the push notifications using firebase_messaging: ^16.1.1. I've also set up a Github Actions pipeline. The problem: if I release to ...
MikkelT's user avatar
  • 891
1 vote
1 answer
59 views

When I run my GitHub Actions workflow, which is trying to connect with AWS, the deployment log fails with: Error: Could not assume role with OIDC: Not authorized to perform sts:...
harriyott's user avatar
  • 10.7k
1 vote
1 answer
72 views

I have a GitHub Actions workflow that is supposed to run automatically on a schedule using cron, but it is not triggering at all. However, when I manually trigger the same workflow using ...
Wei Jie's user avatar
  • 32
1 vote
1 answer
72 views

We have a standardized repo layout and use a workflow to build, test and deploy. Since some repos need some special setup, we can pass a setup.py script (with args) as input to the workflow. In one ...
Raphael Grimm's user avatar
0 votes
1 answer
42 views

Problem I'm trying to checkout a private GitHub Enterprise repository in a GitHub Actions workflow, but it consistently fails with a "Not Found" error even though I have a valid Personal ...
Athpath's user avatar
Advice
0 votes
1 replies
16 views

I was wondering if Github rules allow me to connect via a reverse SSH to their continuos integration virtual machines and obtain a shell prompt in order to for example debug a failing release ...
Scrooge McDuck's user avatar
0 votes
1 answer
71 views

I've been investigating a problem I'm experiencing with github hosted runners, and managed to also experience the problem on a VM in azure. When I do a docker pull from a private registry in AWS some ...
blackwolf123333's user avatar
-1 votes
1 answer
64 views

Been trying to deploy my Python code to GitHub Actions for remote executions but the files are not getting created. After a successful run of the workflow I get the error message saying there is ...
ian's user avatar
  • 9
1 vote
0 answers
72 views

I'm running Newman API tests in a GitHub Actions workflow that needs to pass Cloudflare Access headers. The workflow is failing even though I believe I've implemented everything Postman Collection has ...
user27042668's user avatar
1 vote
1 answer
68 views

I'm using Kargo to promote container images, and I would like to use its feature to parse container annotations. Kargo needs these annotations at index level, not manifest level. I'm struggling to ...
schrom's user avatar
  • 1,755
2 votes
0 answers
57 views

I am using the github action google-github-actions/auth@v3 and following the documentation for workload identity federation through a service account within the github CI. I have created the workload ...
LlamaD's user avatar
  • 464
1 vote
0 answers
29 views

I am trying to package a pre-compiled, Chromium-based browser (Helium) as a Snap package using core24. I am using GitHub Actions to dynamically fetch the latest release tag, inject the download URL ...
obk's user avatar
  • 33
1 vote
0 answers
108 views

I have a .NET 8 based multi-project backend solution. It uses GitHub actions to build the build/publish project with release, that is later used by AWS Lambda to run it whenever an invocation occurs. ...
humblefool's user avatar
4 votes
1 answer
111 views

Docker have recently made their hardened images available for everyone. Although they're free to use, images in the hardened image catalog require authentication to pull. I'm trying to set up ...
jonrsharpe's user avatar
  • 124k
0 votes
1 answer
309 views

It seems Visual Studio 2026 Build Tools (MSBuild 18) are currently not available on GitHub-hosted Windows runners. How to install them during a GitHub Actions job?
Amit's user avatar
  • 1,200
Best practices
1 vote
0 replies
137 views

I'm setting up a secure CI/CD pipeline using GitHub Actions with self-hosted runners running in Kubernetes, and I want to build Docker images and push them to AWS ECR securely. Goals Build Docker ...
refaeldoron's user avatar
Best practices
1 vote
4 replies
75 views

former Java developer and total Julia noob here. My problem: My github pipeline takes FOREVER (pipeline see below). Two point of concern: some dependencies are only needed for an example run with ...
konse's user avatar
  • 1,125
3 votes
1 answer
156 views

I have the following Github workflow file: name: test-ci2 on: push: branches: [ '**/ci-*' ] jobs: test: runs-on: ubuntu-latest steps: - run: echo "Triggered by **/ci-* ...
Mark Dominus's user avatar
  • 1,879
1 vote
0 answers
85 views

We have several (private) npm packages in the GitHub npm registry. Let's say we have repository A and repository B. Repository A publishes an npm package into the GitHub registry, and repository B ...
jleeothon's user avatar
  • 3,226
1 vote
1 answer
68 views

I’m working on a Python project using Selenium and pytest. All tests pass locally in normal (non-headless) mode, but when I run them in GitHub Actions or even locally in headless mode, many of them ...
Dmytro Podoprygora's user avatar
0 votes
1 answer
103 views

I have some jobs running on Github Actions, that require Puppeteer to run, but it fails to start with this error Cannot start ChromeHeadless [2303:2303:1207/162353.403103:FATAL:content/browser/...
OtaconKiko's user avatar
1 vote
0 answers
34 views

I have github action written to test build and also run unit tests before performing a release. steps: - name: Checkout repo uses: actions/checkout@v4 - name: Set up Ruby (for ...
Dragisa Dragisic's user avatar
0 votes
0 answers
93 views

I'm implementing CI/CD for a couple applications using GithubActions in GHES with a self-hosted runner and I've been facing this problem "An error occurred while validating. HRESULT = '80004005'&...
Frank Junior Reyes Batista's user avatar
0 votes
1 answer
66 views

I’m trying to create a GitHub Actions workflow that manages AWS Secrets Manager (create/read/update/delete). The workflow should only run manually using workflow_dispatch, because it requires user ...
John's user avatar
  • 13
Best practices
0 votes
1 replies
35 views

We've had troubes in the past trying to validate github environment against unset/empty secrets or variables. I've used bash scripts like [ -z "${{ secrets.mysecret }}" ] && exit 1; ...
some_random_dude's user avatar
3 votes
1 answer
98 views

I'm trying to chain two reusable GitHub Actions workflows: Workflow A (secrets.yaml): fetches secrets from Vault Workflow B (build.yaml): needs the output DOCKER_CONFIG generated by workflow A My ...
Ciprian Istrate's user avatar
Advice
2 votes
0 replies
78 views

How would you rate this GitOps workflow idea with ArgoCD + ApplicationSet + PreSync hooks? In my organization we already use Argo CD for production and staging deployments. We're considering giving ...
luacassus's user avatar
  • 6,750
-1 votes
2 answers
137 views

I have two GitHub action steps that require persistent state between calls. So far, I've solved that with a small virtual machine (1 CPU, 256MB RAM) that acts as a custom runner accepting only a ...
Simon Richter's user avatar
0 votes
0 answers
93 views

I have a React Native project that builds and uploads successfully using Fastlane on my local Mac (Xcode 26.1). However, the GitHub Actions iOS build fails with the following error: ** ARCHIVE FAILED *...
Ruchira Swarnapriya's user avatar
Best practices
0 votes
0 replies
63 views

There's this GitHub Actions workflow to build & release Python project: name: build, test, release on: push jobs: build: name: build runs-on: ubuntu-latest steps: - uses: ...
basher's user avatar
  • 87
Advice
2 votes
4 replies
89 views

My goal is to schedule a Cron Job using GitHub Actions to destroy and reapply the same resource at specific times — for example, apply at 8 a.m. and destroy at 5 p.m. Based on my research, I would run ...
Coco's user avatar
  • 25
0 votes
0 answers
118 views

I'm using VS Code and working on GitHub Actions workflow files. I'm using the GitHub Actions extension. I'm having issues with the linter. VS Code is showing me some errors and warnings that are ...
Valentin Vignal's user avatar
0 votes
0 answers
73 views

Repository structure: Commits first-commit: add test file second-commit: add workflow .github/workflows/tag.yaml name: tag_handler on: push: tags: - "*" jobs: hello: ...
CatBraaain's user avatar
0 votes
1 answer
112 views

I want to use GitHub Actions to build the bottle for a formula that lives in the same repository. The main part here is: - name: build package run: | brew install --build-bottle ./Formula/...
olebole's user avatar
  • 593
1 vote
1 answer
110 views

My goal is to run multiple CodeQL query packs and suites (like security-extended and audit) in one GitHub Action workflow, and ideally merge the results into one SARIF file for upload to GitHub Code ...
David Ng's user avatar
0 votes
0 answers
69 views

I’m running a Fastlane pipeline for iOS app builds in CI/CD, and my build fails with the following log output: INFO [2025-11-04 18:09:06.48]: ERROR [2025-11-04 18:09:06.48]: Looks like fastlane ran ...
Somnath Sabale's user avatar
Tooling
1 vote
1 replies
70 views

I have Terraform Cloud connected to my GitHub repository (via GitHub App integration). Here’s my setup: A branch named feature-cr-001 was created from dev. I made code changes and opened a pull ...
Uday Kiran's user avatar
1 vote
1 answer
187 views

I have set up a GitHub Actions workflow like: on: pull_request: types: [ closed ] branches: [ main ] and an environment with protection rule that only allows branch main used by some of the ...
Frode Nilsen's user avatar
0 votes
0 answers
41 views

All MFEs are deployed using a single shared GitHub Actions workflow. This workflow handles deployment for any MFE that has been updated and updates a shared manifest file that lists all deployed MFE ...
Gregster's user avatar
0 votes
0 answers
101 views

I have the following jobs specified: jobs: test: continue-on-error: ${{ matrix.allow_fail }} strategy: fail-fast: false matrix: versions: - "latest" ...
user31777736's user avatar
1 vote
1 answer
57 views

I'm trying to update my GitHub action to use latest version of "base" action. All is looking fine but one PR check fails on checking if /dist directory was updated. It finds some changes in /...
piotrekkr's user avatar
  • 3,366
0 votes
0 answers
116 views

I'm trying to run codex for my private repo which has npm dependencies which are also private npm packages on github. I have added to the codex environment a secret GITHUB_TOKEN which is a PAT. but it'...
Hesam Zakeri's user avatar
0 votes
0 answers
48 views

Context: Spring Boot app - multi modules (100) Gradle 8.6 GitHub Actions Let's say I want to run unit test for 10 modules (picked from 100 modules somehow) with the minimized time. I have one GitHub ...
SoT's user avatar
  • 1,267
0 votes
0 answers
45 views

I have an issue with GitHub Actions. I have a status check that MUST pass whenever a PR is created on a specific branch. The workflow is successfully triggered, but for some reason the status check ...
CMJ's user avatar
  • 133
1 vote
1 answer
87 views

I'm trying to build an xcframework from a simple spm package. Consulted AI to get help with creating a workflow that I could trigger manually in order to create an xcframework and finally upload it to ...
batman's user avatar
  • 2,521
-3 votes
1 answer
111 views

I have a workflow that checks submitted code for TODO: comments to enforce that all of them mention an open issue like TODO: #123 - handle symlinks. It works well and prevents submitters from ...
Get rid of LLM slop's user avatar
3 votes
0 answers
99 views

I have a pretty expensive github action workflow and I'm trying to reduce the amount of time it takes to run it in total. I have a big matrix configuration because I need to test my library with ...
Guillaume Racicot's user avatar

1
2 3 4 5
225