rules: Drop architecture
and build-date
from required container labels
#156
Workflow file for this run
This file contains 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: tests | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
verify-data: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install ec-cli | |
run: |- | |
mkdir -p "${HOME}/.local/bin" | |
# curl -sL https://github.com/enterprise-contract/ec-cli/releases/download/snapshot/ec_linux_amd64 -o "${HOME}/.local/bin/ec" | |
# Workaround until the EC release is fixed. | |
curl -sL https://github.com/enterprise-contract/ec-cli/releases/download/v0.6.150/ec_linux_amd64 -o "${HOME}/.local/bin/ec" | |
chmod +x "${HOME}/.local/bin/ec" | |
ec version | |
- name: Validate data | |
run: ./hack/verify-data.sh |