Bump actions/checkout from 4.2.1 to 4.2.2 #46
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: Pull Request | |
on: | |
# Enable manual running of action if necessary | |
workflow_dispatch: | |
# Test build/deploy on PRs to main/master | |
pull_request: | |
# Only publish on push to main branch | |
branches: | |
- main | |
# Don't trigger if it's just a documentation update | |
paths-ignore: | |
- "**.md" | |
- "**.MD" | |
- "**.yml" | |
- "LICENSE" | |
- ".gitattributes" | |
- ".gitignore" | |
- ".dockerignore" | |
jobs: | |
shellcheck: | |
name: Run shellcheck against shell scripts | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name == 'pull_request' }} | |
steps: | |
- uses: actions/checkout@v4.2.2 | |
- name: Pull koalaman/shellcheck:stable Image | |
run: docker pull koalaman/shellcheck:stable | |
- name: Run Shellcheck against shell scripts | |
run: docker run --rm -i -v "$PWD:/mnt" koalaman/shellcheck:stable $(find . -type f -exec grep -m1 -l -E '^#!.*sh.*' {} \; | grep -v '/.git/') | |
hadolint: | |
name: Run hadolint against docker files | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name == 'pull_request' }} | |
steps: | |
- uses: actions/checkout@v4.2.2 | |
- name: Pull hadolint/hadolint:latest Image | |
run: docker pull hadolint/hadolint:latest | |
- name: Run hadolint against Dockerfiles | |
run: docker run --rm -i -v "$PWD":/workdir --workdir /workdir --entrypoint hadolint hadolint/hadolint --ignore DL3003 --ignore DL3006 --ignore DL3010 --ignore DL4001 --ignore DL3007 --ignore DL3008 --ignore SC2068 --ignore DL3007 --ignore SC1091 --ignore DL3013 --ignore DL3010 $(find . -type f -iname "Dockerfile*") | |
test-autogain: | |
name: Test autogain script | |
needs: [shellcheck, hadolint] # don't run the autogain test unless all linting passes | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name == 'pull_request' }} | |
steps: | |
- uses: actions/checkout@v4.2.2 | |
- name: Test autogain script | |
run: | | |
docker build -t readsb_autogain_testing_base . | |
docker build -f Dockerfile.autogain_testing -t readsb_autogain_testing . | |
time docker run --rm --no-healthcheck readsb_autogain_testing | |
test_build: | |
name: Test Build | |
runs-on: ubuntu-latest | |
needs: [test-autogain] | |
strategy: | |
matrix: | |
docker-platform: | |
- linux/amd64 | |
- linux/arm64 | |
- linux/arm/v7 | |
steps: | |
# Check out our code | |
- name: Checkout | |
uses: actions/checkout@v4.2.2 | |
with: | |
fetch-depth: 0 | |
# List of files to check to trigger a rebuild on this job | |
- name: Get specific changed files | |
id: changed-files-specific | |
uses: tj-actions/changed-files@v45.0.3 | |
with: | |
files: | | |
Dockerfile | |
rootfs | |
Dockerfile.autogain_testing | |
run_autogain_tests.sh | |
!*.md | |
!*.MD | |
# Set up QEMU for multi-arch builds | |
- name: Set up QEMU | |
if: steps.changed-files-specific.outputs.any_changed == 'true' | |
uses: docker/setup-qemu-action@v3.2.0 | |
# Set up buildx for multi platform builds | |
- name: Set up Docker Buildx | |
if: steps.changed-files-specific.outputs.any_changed == 'true' | |
id: buildx | |
uses: docker/setup-buildx-action@v3.7.1 | |
# Build | |
- name: Test Build | |
if: steps.changed-files-specific.outputs.any_changed == 'true' | |
uses: docker/build-push-action@v6.9.0 | |
with: | |
context: . | |
file: ./Dockerfile | |
no-cache: true | |
platforms: ${{ matrix.docker-platform }} | |
push: false | |
# Patch dockerfile to remove healthcheck | |
- name: Patch Dockerfile to remove healthcheck | |
if: steps.changed-files-specific.outputs.any_changed == 'true' | |
run: sed '/^HEALTHCHECK /d' < Dockerfile > Dockerfile.nohealthcheck | |
# Build nohealthcheck | |
- name: Test Build nohealthcheck | |
if: steps.changed-files-specific.outputs.any_changed == 'true' | |
uses: docker/build-push-action@v6.9.0 | |
with: | |
context: . | |
file: ./Dockerfile.nohealthcheck | |
no-cache: true | |
platforms: ${{ matrix.docker-platform }} | |
push: false |