mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
200ddfaaff
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.0.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...2541b1294d2704b0964813337f33b291d3f8596b) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
name: Update certs
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 6 * * *' # Nightly 6AM UTC
|
|
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
update-certs:
|
|
permissions:
|
|
contents: write # for peter-evans/create-pull-request to create branch
|
|
pull-requests: write # for peter-evans/create-pull-request to create a PR
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v.24.0
|
|
|
|
|
|
- name: Update certs
|
|
run: cd orbit/pkg/packaging && ./mk-ca-bundle.pl -u certs.pem
|
|
|
|
- name: PR changes
|
|
uses: peter-evans/create-pull-request@f22a7da129c901513876a2380e2dae9f8e145330 # v3.12.1
|
|
with:
|
|
base: main
|
|
branch: update-ca-certs
|
|
delete-branch: true
|
|
title: Update Orbit CA certs [automated]
|
|
commit-message: |
|
|
Update Orbit CA certs [automated]
|
|
|
|
Generated automatically with curl mk-ca-bundle.pl script.
|
|
body: Automated change from [GitHub action](https://github.com/fleetdm/fleet/actions/workflows/update-certs.yml).
|