Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

0 votes
1 answer
15 views

AuthenticationFailed error while trying to use safe download workflow artifact

Trying to run below workflow but getting: Error: <?xml version="1.0" encoding="utf-8"?> <Error> <Code>AuthenticationFailed</Code> <Message>Server ...
Mario's user avatar
  • 11
0 votes
1 answer
19 views

In Django CI, githubactions try to another database for testing

This configuration refers to portfolio_db when running the server normally, and refers to test_portfolio_db during testing. DATABASES = { "default": { "ENGINE": "...
yoshitaka okada's user avatar
1 vote
1 answer
31 views

How to pass environment variables to a reusable workflow in Github Actions

In the GitHub actions console I have an environment created for my workflow. This environment has certain variables like account_number etc. I want to pass this value into the resuable workflow. name: ...
user20358's user avatar
  • 14.6k
0 votes
0 answers
16 views

How to get Dependabot to run test suite in GitHub Actions?

I have configured Dependabot in GitHub Actions. However, Dependabot cannot access repo secrets, so Dependabot PRs fail tests because GitHub Action's secrets aren't accessible. https://github.com/...
Intrastellar Explorer's user avatar
-1 votes
0 answers
13 views

.NET Code coverage SonarCloud github actions yml file

build.yml `on: push: branches: [ "main" ] pull_request: branches: [ "main" ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Setup .NET uses: ...
Anton Sheinikov's user avatar
0 votes
0 answers
26 views

How to do ci-cd of Django DRF application through Github to AWS?

Before deploying my django drf server i need to test it during production phase so i need to host my django drf project in github and so through ci-cd to aws. So is it need to be dockerized before ...
user17455345's user avatar
0 votes
0 answers
31 views

Docker container failing to build in GitHub Actions, but it builds on my local machine Ubuntu 24.04

I am trying to build and run a containerized Spring server in a GitHub Actions pipeline. The end goal is to have the backend and frontend both running in the pipeline, so that our Cypress tests can ...
Ambassador Kosh's user avatar
0 votes
1 answer
46 views

Github Actions to only apply the review position for specific jobs in a workflow

I am new to GitHub actions. I use it to deploy to an AWS account, a lambda application committed to a GitHub repository. Currently, I am using this workflow below so that only a pull request that is ...
user20358's user avatar
  • 14.6k
-1 votes
1 answer
25 views

GitHub Action has stopped to schedule the workflow that was successfully running for 6 months

My GitHub Action workflow has the following triggers: workflow dispatch; schedule using a cron expression: "0 12 * * 1,2,4". It was scheduling the workflow for about 6 months, but it just ...
Vadym's user avatar
  • 381
0 votes
1 answer
35 views

Can't add cache for my dependencies in GitHub Actions using Python

I have a project that uses ruff and pytest. I want to cache those dependencies, but in the docs there is an example that uses some kind of node.js env, and chatGPT suggested me something like that: ...
Swantewit's user avatar
  • 1,046
0 votes
1 answer
27 views

How to share artifacts between workflows in GitHub Actions?

workflowA generates artifacts which are needed to be consumed by workflowB. Both workflows are triggered manually with workflow_dispatch, and I prefer not to use workflow_call or workflow_run events (...
Nir's user avatar
  • 61
0 votes
1 answer
35 views

Sign with xcode build on CI/Github actions with fastlane results in signing error regarding SPM frameworks

I am manually on GitHub action trying to sign my iOS app. I am using fastlane (partially) to help me. I do not want to use match as I intend to reuse the script between customers so I cannot use a ...
Sunkas's user avatar
  • 9,550
0 votes
0 answers
19 views

Github Action Workflow not running on branches

I have a Github action workflow that looks like this: name: Android Build on: workflow_dispatch: pull_request: branches-ignore: - master-preview - develop-preview paths: ...
kevguy's user avatar
  • 4,418
0 votes
0 answers
28 views

Github Actions fails to find UnitTest.csproj

I'm currently trying to set up a GitHub actions such that when a PR is made to the developing branch, a series unit test runs on the PR. This is a dotnet application, and here is the dot.yml: name: ....
Suji's user avatar
  • 769
0 votes
1 answer
60 views

How to save python script output in GitHub Actions running on windows-latest?

I have the following GitHub Actions Workflow: name: Workflow on: [push] permissions: id-token: write contents: read jobs: workflow: runs-on: windows-latest steps: - name: Check ...
jordp1's user avatar
  • 5

15 30 50 per page
1
2 3 4 5
62