Add apt-retry wrapper for transient apt mirror failures #135
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: Auto Update Test | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| include: | |
| - { image: latest, mode: stable } | |
| - { image: testing, mode: rc } | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run auto-update | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: ./.scripts/auto-update ${{ matrix.image }} ${{ matrix.mode }} | |
| - name: Validate images.json | |
| run: jq empty images.json |