Set up git to turn off "safe directory" warnings #48
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR | |
on: pull_request | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
actionlint: | |
name: Lint GitHub Action Workflows | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Check workflow files | |
uses: docker://ponylang/shared-docker-ci-actionlint:20230810 | |
with: | |
args: -color | |
superlinter: | |
name: Lint bash, docker, markdown, and yaml | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Lint codebase | |
uses: docker://github/super-linter:v3.8.3 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VALIDATE_ALL_CODEBASE: true | |
VALIDATE_BASH: true | |
VALIDATE_DOCKERFILE: true | |
VALIDATE_MD: true | |
VALIDATE_YAML: true | |
validate-actionlint-image-builds: | |
name: Validate release Docker image builds | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Docker build | |
run: "docker build --pull --file=actionlint/Dockerfile ." | |
validate-release-a-library-image-builds: | |
name: Validate release-a-library Docker image builds | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Docker build | |
run: "docker build --pull --file=release-a-library/Dockerfile ." | |
validate-x86-64-unknown-linux-builder-image-builds: | |
name: Validate x86-64-unknown-linux-builder Docker image builds | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Docker build | |
run: "docker build --pull --file=x86-64-unknown-linux-builder/Dockerfile ." | |
validate-x86-64-unknown-linux-builder-with-libressl-3_5_3-image-builds: | |
name: Validate x86-64-unknown-linux-builder-with-libressl-3.5.3 Docker image builds | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Docker build | |
run: "docker build --pull --file=x86-64-unknown-linux-builder-with-libressl-3.5.3/Dockerfile ." | |
validate-x86-64-unknown-linux-builder-with-libressl-3_7_2-image-builds: | |
name: Validate x86-64-unknown-linux-builder-with-libressl-3.7.2 Docker image builds | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Docker build | |
run: "docker build --pull --file=x86-64-unknown-linux-builder-with-libressl-3.7.2/Dockerfile ." | |
validate-x86-64-unknown-linux-builder-with-openssl_1_1_1q-image-builds: | |
name: Validate x86-64-unknown-linux-builder-with-openssl_1.1.1q Docker image builds | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Docker build | |
run: "docker build --pull --file=x86-64-unknown-linux-builder-with-openssl_1.1.1q/Dockerfile ." | |
validate-x86-64-unknown-linux-builder-with-openssl_1_1_1t-image-builds: | |
name: Validate x86-64-unknown-linux-builder-with-openssl_1.1.1t Docker image builds | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Docker build | |
run: "docker build --pull --file=x86-64-unknown-linux-builder-with-openssl_1.1.1t/Dockerfile ." | |
validate-x86-64-unknown-linux-builder-with-openssl_3_0_7-image-builds: | |
name: Validate x86-64-unknown-linux-builder-with-openssl_3.0.7 Docker image builds | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Docker build | |
run: "docker build --pull --file=x86-64-unknown-linux-builder-with-openssl_3.0.7/Dockerfile ." | |
validate-x86-64-unknown-linux-builder-with-openssl_3_1_0-image-builds: | |
name: Validate x86-64-unknown-linux-builder-with-openssl_3.1.0 Docker image builds | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Docker build | |
run: "docker build --pull --file=x86-64-unknown-linux-builder-with-openssl_3.1.0/Dockerfile ." | |
validate-x86-64-unknown-linux-builder-with-pcre-image-builds: | |
name: Validate x86-64-unknown-linux-builder-with-pcre Docker image builds | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Docker build | |
run: "docker build --pull --file=x86-64-unknown-linux-builder-with-pcre/Dockerfile ." |