PR for latest Grype release #632
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: PR for latest Grype release | |
on: | |
schedule: | |
- cron: "0 8 * * *" # 3 AM EST | |
workflow_dispatch: | |
env: | |
GO_VERSION: "1.23.x" | |
GO_STABLE_VERSION: true | |
jobs: | |
upgrade-grype: | |
runs-on: ubuntu-latest | |
if: github.repository == 'anchore/grype-db' # only run for main repo | |
steps: | |
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 #v4.2.1 | |
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 #v5.0.2 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
stable: ${{ env.GO_STABLE_VERSION }} | |
- run: | | |
LATEST_VERSION=$(curl "https://api.github.com/repos/anchore/grype/releases/latest" 2>/dev/null | jq -r '.tag_name') | |
# update go.mod | |
go get github.com/anchore/grype@$LATEST_VERSION | |
go mod tidy | |
# export the version for use with create-pull-request | |
echo "LATEST_VERSION=$LATEST_VERSION" >> $GITHUB_OUTPUT | |
id: latest-version | |
- uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a #v2.1.0 | |
id: generate-token | |
with: | |
app_id: ${{ secrets.TOKEN_APP_ID }} | |
private_key: ${{ secrets.TOKEN_APP_PRIVATE_KEY }} | |
- uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f #v7.0.5 | |
with: | |
signoff: true | |
delete-branch: true | |
branch: auto/latest | |
labels: dependencies | |
commit-message: "Update Grype to ${{ steps.latest-version.outputs.LATEST_VERSION }}" | |
title: "Update Grype to ${{ steps.latest-version.outputs.LATEST_VERSION }}" | |
body: | | |
Update Grype to ${{ steps.latest-version.outputs.LATEST_VERSION }} | |
token: ${{ steps.generate-token.outputs.token }} |