This repository was archived by the owner on Dec 21, 2025. It is now read-only.
Bump actions/checkout from 5 to 6 #275
Workflow file for this run
This file contains hidden or 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: test | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| paths-ignore: | |
| - '**.md' | |
| pull_request: | |
| paths-ignore: | |
| - '**.md' | |
| env: | |
| BUILD_TAG: cloudflared:test | |
| CONTAINER_NAME: cloudflared | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - | |
| name: Checkout | |
| uses: actions/checkout@v6 | |
| - | |
| name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - | |
| name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - | |
| name: Build | |
| uses: docker/bake-action@v6 | |
| with: | |
| source: . | |
| targets: image-local | |
| env: | |
| DEFAULT_TAG: ${{ env.BUILD_TAG }} | |
| - | |
| name: Start | |
| run: | | |
| docker compose up -d | |
| working-directory: test | |
| env: | |
| CLOUDFLARED_IMAGE: ${{ env.BUILD_TAG }} | |
| CLOUDFLARED_CONTAINER: ${{ env.CONTAINER_NAME }} | |
| - | |
| name: Check container logs | |
| uses: crazy-max/.github/.github/actions/container-logs-check@main | |
| with: | |
| container_name: ${{ env.CONTAINER_NAME }} | |
| log_check: "Starting DNS over HTTPS proxy server" | |
| timeout: 120 | |
| - | |
| name: Logs | |
| if: always() | |
| run: | | |
| docker compose logs | |
| working-directory: test | |
| env: | |
| CLOUDFLARED_IMAGE: ${{ env.BUILD_TAG }} | |
| CLOUDFLARED_CONTAINER: ${{ env.CONTAINER_NAME }} |