Questions tagged [github-actions-runners]
64 questions
2
votes
1 answer
Bookdown Document Not Rendering Outputs Correctly
I have a bookdown document that renders fine on my local machine, but when I have it run as an automated process using GitHub Actions the outputs from the individual code chunks show up all jumbled up:
This is the GitHub repository for the book:…

Ricky
- 1,005
- 1
- 12
- 15
2
votes
2 answers
How to auto update github action runner
I'm looking for a way to auto update my local github action runner.
This is still in beta but work fine and for every update my CI/CD is not running without any notification.

profy
- 143
- 6
1
vote
1 answer
setting available sites in nginx on github actions cause error
I have the following workflow setup:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Nginx
run: |
sudo apt-get update
sudo apt-get install -y nginx
- name: Update NGINX configuration
run: |
…

Patryk Karpiński
- 33
- 10
1
vote
0 answers
GitHub Actions, Terraform, and GCP: Github Runner permissions and service account integration issues
I working on automating CI/CD pipeline using GitHub Actions. I have already set up Terraform that deploys the infrastructure on GCP. GitHub Actions is authenticated to Google Cloud via the following actions:
- id: 'auth'
name:…

SkogensKonung
- 601
- 1
- 9
- 22
1
vote
1 answer
Health check failing to fetch the version number in github actions runners
I have a workflow file which has 3 similar jobs which are running health check on a website but all of them are behaving differently and the behavior seems to be fully random and can't seem to find a valid reason. I have tried all possible…

mustafa_khan
- 21
- 5
1
vote
1 answer
Github action matrix job stops while one of strategy completes
I am trying to run a job on multiple os using matrix strategy. my code is below -
strategy:
matrix:
os: [ubuntu-18.04, ubuntu-20.04, self-hosted]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
However if one of the triggerd…

ac45830
- 21
- 3
1
vote
0 answers
GitHub Actions Self-hosted Runner sibling container: permission denied... Docker daemon socket unix:///var/run/docker.sock
I need to execute on GPU hardware so I have to create a self-hosted runner for github actions to execute my code. The self-hosted runner is hosted on my local machine (ubuntu 20.04).
I'm running the self hosted runner container locally with -v and…

Donovin
- 55
- 7
1
vote
1 answer
Xcode error while archiving - There was an error parsing the Info.plist for the bundle at URL <0x6000010c6760>: NSCocoaErrorDomain - 3840
I am setting up CI/CD using Github actions and Fastlane to archive and upload iOS App.
I keep getting this error only when building on Github actions cloud, archiving through Xcode, and running lane locally works normally.
I am using Xcode 13.2.1…

ahmetovicajdin
- 344
- 4
- 14
1
vote
4 answers
GitHub action self-host runner as service fails
I have installed GitHub self-hosted runner on my Ubuntu system. Getting below error when i try to configure it as service.
$ sudo ./svc.sh start
Failed to start actions.runner._services.Linux-Host01.service: Unit…

user4948798
- 1,924
- 4
- 43
- 89
1
vote
1 answer
macOS Github actions queued, "The agent pool assigned to this job has hit their MacOs concurrency limits", why?
Our team has (essentially) a CI system built in github actions, which spawns 5 testing jobs for a PR. This requires macOS github-hosted action runners. When more than one PR is being built, our jobs will often end up queued, with the following…

Clay Bridges
- 11,602
- 10
- 68
- 118
1
vote
1 answer
Github action did not make sqlfluff linting changes to a file
I am trying to set sqlfluff linting for dbt files by following the example on this example with some slight changes. My github actions yml file looks like:
name: Run sqlfluff linter
on:
push:
branches:
- main
- sqlfluff_ga2
…

G1124E
- 407
- 1
- 10
- 20
1
vote
0 answers
Using cURL within Github Action causes infinite step process
I'm not quite sure how best to explain the issue I am seeing, but essentially I am just making a simple cURL request.
The particular Github action step is as:
- name: Perseus API cURL Test Stack on http
run: |
curl --silent…

Micheal J. Roberts
- 3,735
- 4
- 37
- 76
1
vote
0 answers
Github Action how to deal with standalone config file
We are using Github Action to deploy our code. On push, the source code will be pushed and we were able to build the code and deploy successfully if the config file is also tracked by the repository. However, we are encountering a problem with a…

beedrill
- 344
- 3
- 17
1
vote
2 answers
GitHub runner setup in GKE
I am trying to create a GitHub actions self-host runner in GKE.
For the I created the Docker with Ubuntu base image and downloaded the GitHub runner code.
curl -o actions-runner-linux-x64-2.288.1.tar.gz -L…

karthik
- 193
- 1
- 1
- 13
1
vote
1 answer
How do I use the user home directory in a Github actions workflow that runs on Windows?
I'm using the Github actions workflow that runs on windows-latest and I'd like to use the user home directory variable instead of using an hardcoded path C:\Users\runneradmin. On windows this is normally available in a cmd as %USERPROFILE%.
But…

Sybuser
- 735
- 10
- 27