Questions tagged [github-actions-runners]

64 questions
1
vote
0 answers

Docker based runner to use private image to build

My self-hosted docker based runner already activated at GitHub organization level. Separately to perform npm build through our private docker image, Trying with below workflow yml code. name: CI with Docker on: push: branches: [ master ] …
1
vote
1 answer

Retrieving Github secrets with spaces from golang script

I would like to retrieve a Github secret content from a script via Golang, that is executed from Github actions. In this particular situation, the secret value stored in Github secrets has a space. I mean the secret value is: JWT . The…
bgarcial
  • 2,915
  • 10
  • 56
  • 123
1
vote
2 answers

Does every Virtual Machine that Github spins up for a workflow run get a new IP address?

The way Github Actions work is that they spin up a VM for every workflow run. Therefore, every run takes place on a different VM. Virtual Machines generally get a different IP whenever they are spun up. I can however find no official documentation…
1
vote
0 answers

Trigger A GitHub Workflow When A New, Separate Repository is Created

I have the following code written which is meant to add a new tag to a repository. This works well if included in the project I'm trying to update directly. name: Check Github Tags on: push jobs: check-git-tags: runs-on: ubuntu-latest …
bschmitty
  • 1,118
  • 3
  • 16
  • 46
0
votes
0 answers

How to deploy ARC runners to a Github org correctly

I have been struggling with all the documentation on Github and broader, on how to deploy ARC runners to our Github organisation I have followed these…
0
votes
0 answers

Integrate Github Actions with Playwright for multiple environment

I want to execute my test script on multiple environment using the same code and same workflow over Github actions. I am not able to pass the environment variable to the npx command. Code I am using : workflow_dispatch: inputs: …
0
votes
1 answer

How many cores are used by Github Actions Runners?

I am running php artisan test --parallel on github actions using a docker container, and the performance is worse than if I run it without --parallel. If I specify the cores with php artisan test --parallel --processes=4 it gets even slower. Does…
0
votes
0 answers

Pygithub g.get_repo() working in local but not on github hosted and self hosted runners

I have a code which is working fine in my local but not on github actions. token = "some-token" repo_name = "customer-sandbox/some-repo" # org/repo format g = Github(token) repo = g.get_repo(repo_name) print(repo) On github and self hosted…
Underoos
  • 4,708
  • 8
  • 42
  • 85
0
votes
1 answer

Github CI run getting failed without change from 15 June ERROR: Error: ENOENT: no such file or directory, stat '/var/folders/sp/m

CI job was working fine and it was posting the build successfully but after 15th June (Tentative) it started getting failed and unable to identify the reason why. Getting below error. Can somebody please help or provide direction using that I can…
Dheeraj D
  • 4,386
  • 4
  • 20
  • 34
0
votes
2 answers

Starting a Tmux session from Github Action doesn't persist once the action completes

I have a self-hosted Github Action with the main function of running a bash script to deploy a Django site. I cd into the directory, and then execute the bash script. This works fine, and I can see the print statements (DEPLOY_FOLDER AND…
0
votes
0 answers

Accessing internet from container, running in GitHub Actions

I would like to ping some external IP from inside of a container, running in GitHub Actions. I have a simple GitHub action (consider this workflow): name: PING on: push: jobs: ping: runs-on: ubuntu-latest steps: - name:…
0
votes
0 answers

github actions self-hosted runner stuck on authentication--linux ubuntu server

I am trying to configure a github runner on my ubuntu server but it seems to be stuck on the authetnication step when I try to configure it (./config --url --token.) I have opened up port 443 and 80 and 22 and it still doesn't work. enter image…
0
votes
0 answers

python pypetter package github action never ending run

github action link this is an example workflow which runs a simple webscraping script from pyppeteer import launch # from instagrapi import Client async def main(): # browser = await launch(headless=False) browser = await launch() page…
0
votes
0 answers

Use same Pipenv in multiple Github Action jobs

Goal I would like to run a Github actions workflow that has multiple jobs. I would like those jobs to have as little duplication as possible (I've come to accept that some duplication may be unavoidable). Current solution My first job (build-dev)…
0
votes
1 answer

Github actions: how to configure runner to use a specific image

My project currently fails on the windows-2022 runner. It's configured via a Github worfklow (excerpt): jobs: test: runs-on: windows-2022 I can see that the last successful run took place on the win22/20220529 image of the runner. I'd like to…