fix(deps): Update module google.golang.org/api to v0.265.0 #660
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: conformance | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| push: | |
| permissions: | |
| contents: read # to fetch code (actions/checkout) | |
| jobs: | |
| run-conformance-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - | |
| name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - | |
| name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - | |
| name: Build image | |
| uses: docker/bake-action@v6 | |
| - | |
| name: Start distribution server | |
| run: | | |
| IP=`hostname -I | awk '{print $1}'` | |
| echo "IP=$IP" >> $GITHUB_ENV | |
| echo "OCI_ROOT_URL=http://$IP:5000" >> $GITHUB_ENV | |
| DISTRIBUTION_REF="registry:local" | |
| docker run --rm -p 5000:5000 -e REGISTRY_STORAGE_DELETE_ENABLED=true -idt "registry:local" | |
| - | |
| name: Run OCI Distribution Spec conformance tests | |
| uses: opencontainers/distribution-spec@v1.1.1 | |
| env: | |
| OCI_ROOT_URL: ${{ env.OCI_ROOT_URL }} | |
| OCI_NAMESPACE: oci-conformance/distribution-test | |
| OCI_TEST_PULL: 1 | |
| OCI_TEST_PUSH: 1 | |
| OCI_TEST_CONTENT_DISCOVERY: 1 | |
| OCI_TEST_CONTENT_MANAGEMENT: 1 | |
| OCI_HIDE_SKIPPED_WORKFLOWS: 1 | |
| - | |
| name: Move test results | |
| run: mkdir -p .out/ && mv {report.html,junit.xml} .out/ | |
| - | |
| name: Upload test results | |
| uses: actions/upload-artifact@v4.6.2 | |
| with: | |
| name: oci-test-results-${{ github.sha }} | |
| path: .out/ | |
| if-no-files-found: error |