chore(deps): bump actions/checkout from 4 to 6 #8
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: CI | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| workflow_dispatch: | |
| defaults: | |
| run: | |
| shell: bash | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| repo-consistency: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v6 | |
| - name: Install runner dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y rsync ripgrep | |
| - name: Run repository consistency checks | |
| run: bash ./scripts/check-repo-consistency.sh | |
| agent-audit: | |
| runs-on: ubuntu-latest | |
| needs: repo-consistency | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v6 | |
| - name: Install runner dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y python3-yaml ripgrep | |
| - name: Run shared-agent audit | |
| run: bash ./scripts/audit-codex-agents.sh | |
| release-bundle-dry-run: | |
| runs-on: ubuntu-latest | |
| needs: | |
| - repo-consistency | |
| - agent-audit | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v6 | |
| - name: Install runner dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y rsync ripgrep | |
| - name: Build release bundle | |
| run: bash ./scripts/build-release-bundle.sh --output-dir dist --version "ci-${GITHUB_RUN_NUMBER}" | |
| - name: Upload dry-run release bundle | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: codex-cli-bootstrap-ci-bundle | |
| path: dist/ | |
| if-no-files-found: error |