chore: bump dependencies via gobump #729
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: RPM | |
| on: # yamllint disable-line rule:truthy | |
| pull_request: | |
| branches: ["main"] | |
| push: | |
| branches: ["main"] | |
| merge_group: | |
| types: ["checks_requested"] | |
| jobs: | |
| check-spec-images-deps: | |
| name: "Check spec file osbuild/images dependencies" | |
| runs-on: ubuntu-latest | |
| container: registry.fedoraproject.org/fedora:latest | |
| env: | |
| # workaround for expired cert at source of indirect dependency | |
| # (go.opencensus.io/trace) | |
| GOPROXY: "https://proxy.golang.org,direct" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install dependencies | |
| shell: bash | |
| run: | | |
| # we have the same build-deps as the images library | |
| curl -sL https://raw.githubusercontent.com/osbuild/images/refs/heads/main/pyproject.toml > pyproject.toml | |
| curl -sL https://raw.githubusercontent.com/osbuild/images/refs/heads/main/test/scripts/install-dependencies | bash | |
| - name: Vendor dependencies | |
| run: go mod vendor | |
| - name: Check dependencies in spec file | |
| uses: osbuild/images@check-spec-deps-action |