2022-04-13 17:08:04 +00:00
|
|
|
name: PR for latest Syft release
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: "0 8 * * *" # 3 AM EST
|
|
|
|
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
env:
|
2023-01-31 16:42:40 +00:00
|
|
|
GO_VERSION: "1.19.x"
|
2022-04-13 17:08:04 +00:00
|
|
|
GO_STABLE_VERSION: true
|
|
|
|
|
2022-11-14 13:10:09 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2022-04-13 17:08:04 +00:00
|
|
|
jobs:
|
|
|
|
upgrade-syft:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: github.repository == 'anchore/grype' # only run for main repo
|
|
|
|
steps:
|
2023-01-26 18:39:09 +00:00
|
|
|
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v2.5.0
|
2022-04-13 17:08:04 +00:00
|
|
|
|
2023-03-15 21:19:41 +00:00
|
|
|
- uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4.0.0
|
2022-04-13 17:08:04 +00:00
|
|
|
with:
|
|
|
|
go-version: ${{ env.GO_VERSION }}
|
|
|
|
stable: ${{ env.GO_STABLE_VERSION }}
|
|
|
|
|
|
|
|
- run: |
|
|
|
|
LATEST_VERSION=$(curl "https://api.github.com/repos/anchore/syft/releases/latest" 2>/dev/null | jq -r '.tag_name')
|
|
|
|
|
|
|
|
# update go.mod
|
|
|
|
go get github.com/anchore/syft@$LATEST_VERSION
|
2022-04-13 20:30:53 +00:00
|
|
|
go mod tidy
|
2022-04-13 17:08:04 +00:00
|
|
|
|
|
|
|
# export the version for use with create-pull-request
|
|
|
|
echo "::set-output name=LATEST_VERSION::$LATEST_VERSION"
|
|
|
|
id: latest-version
|
|
|
|
|
2023-01-27 15:50:16 +00:00
|
|
|
- uses: tibdex/github-app-token@b62528385c34dbc9f38e5f4225ac829252d1ea92 # v1.8.0
|
2022-04-13 17:08:04 +00:00
|
|
|
id: generate-token
|
|
|
|
with:
|
|
|
|
app_id: ${{ secrets.TOKEN_APP_ID }}
|
|
|
|
private_key: ${{ secrets.TOKEN_APP_PRIVATE_KEY }}
|
|
|
|
|
2023-03-21 13:51:27 +00:00
|
|
|
- uses: peter-evans/create-pull-request@38e0b6e68b4c852a5500a94740f0e535e0d7ba54 # v4.2.4
|
2022-04-13 17:08:04 +00:00
|
|
|
with:
|
|
|
|
signoff: true
|
|
|
|
delete-branch: true
|
|
|
|
branch: auto/latest
|
|
|
|
labels: dependencies
|
|
|
|
commit-message: "Update Syft to ${{ steps.latest-version.outputs.LATEST_VERSION }}"
|
|
|
|
title: "Update Syft to ${{ steps.latest-version.outputs.LATEST_VERSION }}"
|
|
|
|
body: |
|
|
|
|
Update Syft to ${{ steps.latest-version.outputs.LATEST_VERSION }}
|
|
|
|
token: ${{ steps.generate-token.outputs.token }}
|