Questions tagged [github-actions-runners]
64 questions
0
votes
1 answer
Self hosted GitHub Action Runner jobs failing
We make use of Github Self-Hosted action runners running on EC2 machines (m5.xlarge). We use these as part of our CI/CD pipeline to support docker image builds and automated testing. This solution has worked fine for the last year or so, but all of…

Reidacus
- 103
- 2
- 13
0
votes
1 answer
Endless Waiting for a runner to pick up this job in github enterprise
EDIT: My repo resides in github enterprise
I have a very basic github workflow action as below:
All it does is to run a powershell script as mentioned in here.
name: First Github Action
on:
workflow_dispatch:
jobs:
first-job:
name: First…

user007
- 1,504
- 2
- 18
- 51
0
votes
0 answers
Force Docker to use memory instead of disk space
When I run my docker containers in Google Cloud Run, any disk space they use comes from the available memory.
I'm running several self-hosted github action runners on a single local server, and they have worn out my SSD over the past year. The thing…

spierce7
- 14,797
- 13
- 65
- 106
0
votes
0 answers
Setup SonarCloud with Github Action
I want to use SonarCloud to verify my CodeCoverage on GitHub, but there is a project stored together in my Repo. Two projects, each of which uses different tools (Swift and Java) for development.
I want to only check Swift Project,Here is the error…

RIPSM S
- 1
- 1
0
votes
1 answer
Is there any way that I can add all the properties to the $GITHUB_ENV
Currently I have a properties file(test.properties) it has all the key pair values, Is there any way that i can add these values to $GITHUB_ENV ??
test.properties ->
username1=user1
username2=user2
I haven't added anything in the workflow yet just…

Mario
- 11
- 1
0
votes
1 answer
Install directory inside the github action runner for cmake install target
I want to use the command make install inside a github runner. Before I can use it I have to set the install directory path, but I don't know it. Can anyone help me?
The steps in the workflow for the cmake look like:
- name: Configure CMake
run:…

Mr T
- 53
- 6
0
votes
0 answers
github action: init services container port with "runner" context
I'm writing github workflow file that is using (docker container) services.
I tried to set the port of the service container with running actions-runner's name, like ${{ runner.name }}.
My workflows file looks like below. I'm using…

Jiseok
- 31
- 3
0
votes
0 answers
GitHub Self Hosted Runner Failing to POST Logs
I've an organisation-level self hosted runner on an Ubuntu 22.04 host. It's successfully authenticated with the organisation and some jobs run successfully. However, logs aren't being sent from the runner to GitHub Enterprise, job success or…

Karim Tabet
- 1,789
- 1
- 14
- 35
0
votes
0 answers
Permission denied when running Go shell script in Github Actions
I have a Go project which creates an endpoint, to consume system information like CPU temps and clock speed etc. (For debian based distros)
I am able to build and test the project successfully in my local environment.
In Github Actions the tests…

Rafael Zasas
- 891
- 8
- 27
0
votes
1 answer
Are there any downsides to installing packages manually on GitHub runners?
I have been trying workflows on GitHub and wanted to set one up to run skaffold commands. I need minikube, helm and skaffold installed.
Most examples that I have checked out run other actions, such as github-action-skaffold , which after trying it…

yisog
- 61
- 7
0
votes
1 answer
Web page 404 error on LAMP stack on Ubuntu 18.04 GitHub-hosted Runner for GitHub Actions
For some reason, I can access the homepage of my site (there's an index.php) but every other page gives a 404 error. The PHP framework used is Joomla CMS. I have in my .htaccess file the following line AddHandler application/x-httpd-php7 .php.…

coder.in.me
- 1,048
- 9
- 19
0
votes
1 answer
Install luarocks-3.8.0 on windows-latest github workflow runner with custom lua intepreter luajit-2.0.4
I am trying to install luarocks-3.8.0 on githubs workflow runner using windows-stable, but unfortunatelly I am not able to set any arguments with success.
I tried the following:
without any argument
with and without /P
with and without /LUA
with…

Ismoh
- 1,074
- 2
- 12
- 35
0
votes
1 answer
Github actions ci cd failed
hello i'm having some errors on github actions, following is my testing.yml file
name: Test
on:
workflow_dispatch:
#on:
#push:
#branches: [ master ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Test
uses:…

MD Nasirul Islam
- 501
- 5
- 17
0
votes
1 answer
Github action error with Set up QEMU - Error: Unable to locate executable file: docker
I'm building a workflow to test, build a docker image and push it to GitHub private repository.
I used to run the action on ububntu-latest and use a specific PHP version and some environment builds but there were some problems due to the fact that…

Ahmed Ibrahim
- 1
- 1
- 2
0
votes
1 answer
Github actions caching for Node.js application is not working
I'm working on configuration of CI/CD in github and faced a problem with caching of dependencies.
My github actions lint config for my Node.js app attached.
As you can see I have additional step called build which is used to cache dependencies using…

Vitali Skripka
- 562
- 1
- 7
- 25