2024-05-09 20:25:00 +00:00
|
|
|
name: PR for latest versions of tools
|
2022-08-22 17:59:54 +00:00
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: "0 8 * * *" # 3 AM EST
|
|
|
|
|
|
|
|
workflow_dispatch:
|
|
|
|
|
2022-11-14 13:10:09 +00:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2022-08-22 17:59:54 +00:00
|
|
|
jobs:
|
|
|
|
update-bootstrap-tools:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: github.repository == 'anchore/grype' # only run for main repo
|
|
|
|
steps:
|
2024-06-13 21:16:02 +00:00
|
|
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7
|
2022-08-22 17:59:54 +00:00
|
|
|
|
2024-05-09 20:25:00 +00:00
|
|
|
- name: Bootstrap environment
|
|
|
|
uses: ./.github/actions/bootstrap
|
2022-08-22 17:59:54 +00:00
|
|
|
with:
|
2024-05-09 20:25:00 +00:00
|
|
|
bootstrap-apt-packages: ""
|
|
|
|
compute-fingerprints: "false"
|
|
|
|
go-dependencies: false
|
2022-11-14 21:23:42 +00:00
|
|
|
|
2024-05-09 20:25:00 +00:00
|
|
|
- name: "Update tool versions"
|
2022-08-22 17:59:54 +00:00
|
|
|
id: latest-versions
|
2024-05-09 20:25:00 +00:00
|
|
|
run: |
|
|
|
|
make update-tools
|
|
|
|
make list-tools
|
|
|
|
|
|
|
|
export NO_COLOR=1
|
|
|
|
delimiter="$(openssl rand -hex 8)"
|
|
|
|
|
|
|
|
{
|
|
|
|
echo "status<<${delimiter}"
|
|
|
|
make list-tool-updates
|
|
|
|
echo "${delimiter}"
|
|
|
|
} >> $GITHUB_OUTPUT
|
|
|
|
|
|
|
|
{
|
|
|
|
echo "### Tool version status"
|
|
|
|
echo "\`\`\`"
|
|
|
|
make list-tool-updates
|
|
|
|
echo "\`\`\`"
|
|
|
|
} >> $GITHUB_STEP_SUMMARY
|
2022-08-22 17:59:54 +00:00
|
|
|
|
2024-05-09 20:25:00 +00:00
|
|
|
- uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a #v2.1.0
|
2022-08-22 17:59:54 +00:00
|
|
|
id: generate-token
|
|
|
|
with:
|
|
|
|
app_id: ${{ secrets.TOKEN_APP_ID }}
|
|
|
|
private_key: ${{ secrets.TOKEN_APP_PRIVATE_KEY }}
|
|
|
|
|
2024-09-03 16:23:26 +00:00
|
|
|
- uses: peter-evans/create-pull-request@4320041ed380b20e97d388d56a7fb4f9b8c20e79 #v7.0.0
|
2022-08-22 17:59:54 +00:00
|
|
|
with:
|
|
|
|
signoff: true
|
|
|
|
delete-branch: true
|
2024-05-09 20:25:00 +00:00
|
|
|
branch: auto/latest-tools
|
2022-08-22 17:59:54 +00:00
|
|
|
labels: dependencies
|
2024-05-09 20:25:00 +00:00
|
|
|
commit-message: 'chore(deps): update tools to latest versions'
|
|
|
|
title: 'chore(deps): update tools to latest versions'
|
2022-08-22 17:59:54 +00:00
|
|
|
body: |
|
2024-05-09 20:25:00 +00:00
|
|
|
```
|
|
|
|
${{ steps.latest-versions.outputs.status }}
|
|
|
|
```
|
|
|
|
This is an auto-generated pull request to update all of the tools to the latest versions.
|
2022-11-14 21:23:42 +00:00
|
|
|
token: ${{ steps.generate-token.outputs.token }}
|