Repository ‘http://security.debian.org/debian-security buster/updates InRelease’ changed its ‘Suite’ value from ‘stable’ to ‘oldstable’

I know you tried it with apt-get –allow-releaseinfo-change update but it worked for me. This is my command in the dockerfile: wget -q -O – https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add – \ && sh -c ‘echo “deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main” >> /etc/apt/sources.list.d/google.list’ \ && apt-get –allow-releaseinfo-change update \ && apt-get install -y google-chrome-unstable \ –no-install-recommends … Read more

Github actions share workspace/artifacts between jobs?

You can use the Github Actions upload-artifact and download-artifact to share data between jobs. In job1: steps: – uses: actions/checkout@v1 – run: mkdir -p path/to/artifact – run: echo hello > path/to/artifact/world.txt – uses: actions/upload-artifact@master with: name: my-artifact path: path/to/artifact And job2: steps: – uses: actions/checkout@master – uses: actions/download-artifact@master with: name: my-artifact path: path/to/artifact – run: … Read more

How do I set an env var with a bash expression in GitHub Actions?

The original answer to this question used the Actions runner function set-env. Due to a security vulnerability set-env is being deprecated and should no longer be used. This is the new way to set environment variables. name: my workflow on: push jobs: build: runs-on: ubuntu-latest steps: – uses: actions/checkout@v2 – name: Set env run: echo … Read more

How to resolve “refusing to allow an OAuth App to create or update workflow” on git push

I’ve literally just come across this problem when trying to use IntelliJ to push to a branch that contains a GitHub Action workflow (YAML file in .github/workflows). I didn’t find existing resources on the Internet very helpful, so I hope this will help you fix it too. TL;DR: Update your Personal Access Token with the … Read more

How to run a github-actions step, even if the previous step fails, while still failing the job

You can add if: always() to your step to have it run even if a previous step fails https://docs.github.com/en/actions/learn-github-actions/expressions#status-check-functions so for a single step it would look like this: steps: – name: Build App run: ./build.sh – name: Archive Test Results if: always() uses: actions/upload-artifact@v1 with: name: test-results path: app/build Or you can add it … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)