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

The unauthenticated git protocol on port 9418 is no longer supported

First, this error message is indeed expected on Jan. 11th, 2022. See “Improving Git protocol security on GitHub“. January 11, 2022 Final brownout. This is the full brownout period where we’ll temporarily stop accepting the deprecated key and signature types, ciphers, and MACs, and the unencrypted Git protocol. This will help clients discover any lingering … Read more