Skip to content

fix oss project board URL #73

fix oss project board URL

fix oss project board URL #73

Workflow file for this run

name: "Update SBOMs"
on:
workflow_dispatch:
push:
branches:
- main
env:
PYTHON_VERSION: "3.10"
jobs:
Publish-SBOMS:
name: "Publish SBOMs"
runs-on: ubuntu-20.04
# set the permissions granted to the github token to publish to ghcr.io
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- uses: actions/cache@v2
with:
path: venv
key: ${{ hashFiles('requirements.txt') }}-${{ hashFiles('Makefile') }}
- name: Login to GitHub Container Registry
run: |
echo ${{ secrets.GITHUB_TOKEN }} | oras login ghcr.io --username ${{ github.actor }} --password-stdin
- name: Update and publish SBOMs
run: make update-and-publish-sboms