11,246 questions
1
vote
0
answers
78
views
AWS Lambda TargetInvocationException : could not load file or assembly 'System.Data.SqlClient, Version=4.6.1.6'
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.
...
-4
votes
0
answers
54
views
How to conditionally run individual jobs based on specific path changes? [duplicate]
In GitLab CI if I want to conditionally run an entire CI file based on certain changes, I'd use include[*].rules.changes:
include:
- local: .gitlab/ci/file.yml
rules:
- changes:
-...
2
votes
1
answer
69
views
How can Dependabot be configured to update Docker's new hardened images?
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 ...
0
votes
1
answer
118
views
How can GitHub-hosted runners use Visual Studio 2026 Build Tools (MSBuild 18) for CI builds?
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?
Best practices
1
vote
0
replies
97
views
How to securely build Docker images in GitHub Actions on Kubernetes runners (no privileged mode / no DinD)?
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 ...
0
votes
0
answers
64
views
Run Ansible deployment via SSM Failed [closed]
Task failed: DISABLE ECHO command 'stty -echo' timeout
Code :
- name: Run Ansible deployment via SSM
env:
AWS_DEFAULT_REGION: ${{ env.AWS_REGION }}
AWS_REGION: ${{ env.AWS_REGION }}
run: |
...
Best practices
0
votes
1
replies
43
views
Julia: speeding up pipelines by 1) separating project into multiple subprojects, 2) dropping transitive dependencies, and 3) reusing stuff?
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 ...
0
votes
0
answers
33
views
Creating environment variables across jobs
I'm trying to write a CloudBees workflow and it uses GitHub Actions syntax. I'm looking for some advice with environment variables.
I want to dynamically create some variables at 'workflow' scope that ...
3
votes
1
answer
135
views
Github Actions '**' pattern matches an unexpected branch
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-* ...
0
votes
0
answers
71
views
Receive 403 inconsistently from GitHub npm registry
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 ...
1
vote
1
answer
54
views
TimeoutExeption in Headless mode
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 ...
0
votes
1
answer
65
views
Puppeteer "No usable sandbox" on Github Actions with ubuntu-latest (23)
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/...
0
votes
0
answers
30
views
Github Action for test build and run unit tests for iOS library
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 ...
0
votes
0
answers
91
views
An error occurred while validating. HRESULT = '80004005'
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'&...
0
votes
1
answer
54
views
GitHub Actions workflow_dispatch inputs not showing in Actions tab
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 ...