chore: Release 2.17.0 (merge-to-main) #249
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
| --- | |
| # Ensures that all of the default images in our | |
| # helm values.yaml file are pullable to authenticated | |
| # users. | |
| # Triggered on the PRs to the main branch. | |
| name: Tests - Artifact Pulls | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| branches: | |
| - main # test only PRs to main branch | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| docker-pulls: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6.2.0 | |
| - name: Checkout voxel51/aloha-github-workflows | |
| uses: actions/checkout@v6 | |
| with: | |
| repository: voxel51/aloha-github-workflows | |
| ref: main | |
| token: ${{ secrets.ORG_RO_ALOHA_GITHUB_WORKFLOWS_FG_PAT }} | |
| path: ./.github/actions/aloha-github-workflows | |
| - name: Set generate-version-file action's path from remote to local | |
| # Public repos cannot access private action repo without GitHub Enterprise | |
| # Instead, we clone the private workflow directory and update the `asdf-install-and-cache/action.yml` | |
| # file's reference to `voxel51/aloha-github-workflows/.github/actions/generate-version-file` with the local path. | |
| shell: bash | |
| run: | | |
| sed -i \ | |
| 's%voxel51/aloha-github-workflows/.github/actions/generate-version-file@main%./.github/actions/aloha-github-workflows/.github/actions/generate-version-file%' \ | |
| .github/actions/aloha-github-workflows/.github/actions/asdf-install-and-cache/action.yml | |
| - name: Temporary SQLite/LZMA - Install missing libraries | |
| run: sudo apt install -y libsqlite3-dev libbz2-dev | |
| - name: Install asdf & tools | |
| uses: ./.github/actions/aloha-github-workflows/.github/actions/asdf-install-and-cache | |
| - name: Login to Docker Hub | |
| uses: docker/login-action@v4 | |
| with: | |
| username: ${{ secrets.RO_DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.RO_DOCKERHUB_PAT }} | |
| - name: Test all docker pulls | |
| shell: bash | |
| run: | | |
| ./utils/validate-docker-pulls.sh |