You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

update-cacert-bundle.yml 1.6KB

chore(deps): Bump the github-actions group with 4 updates Bumps the github-actions group with 4 updates: [andstor/file-existence-action](https://github.com/andstor/file-existence-action), [cypress-io/github-action](https://github.com/cypress-io/github-action), [codecov/codecov-action](https://github.com/codecov/codecov-action) and [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request). Updates `andstor/file-existence-action` from 2.0.0 to 3.0.0 - [Release notes](https://github.com/andstor/file-existence-action/releases) - [Commits](https://github.com/andstor/file-existence-action/compare/20b4d2e596410855db8f9ca21e96fbe18e12930b...076e0072799f4942c8bc574a82233e1e4d13e9d6) Updates `cypress-io/github-action` from 6.6.0 to 6.6.1 - [Release notes](https://github.com/cypress-io/github-action/releases) - [Changelog](https://github.com/cypress-io/github-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/cypress-io/github-action/compare/ebe8b24c4428922d0f793a5c4c96853a633180e3...1b70233146622b69e789ccdd4f9452adc638d25a) Updates `codecov/codecov-action` from 3 to 4 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Commits](https://github.com/codecov/codecov-action/compare/v3...v4) Updates `peter-evans/create-pull-request` from 5.0.2 to 6.0.1 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/153407881ec5c347639a548ade7d8ad1d6740e38...a4f52f8033a6168103c2538976c07b467e8163bc) --- updated-dependencies: - dependency-name: andstor/file-existence-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: cypress-io/github-action dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
2 months ago
12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. name: Update CA certificate bundle
  2. on:
  3. workflow_dispatch:
  4. schedule:
  5. - cron: "5 2 * * *"
  6. jobs:
  7. update-ca-certificate-bundle:
  8. runs-on: ubuntu-latest
  9. strategy:
  10. fail-fast: false
  11. matrix:
  12. branches: ["master", "stable29", "stable28", "stable27", "stable26", "stable25", "stable24", "stable23", "stable22"]
  13. name: update-ca-certificate-bundle-${{ matrix.branches }}
  14. steps:
  15. - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
  16. with:
  17. ref: ${{ matrix.branches }}
  18. submodules: true
  19. - name: Download CA certificate bundle from curl
  20. run: curl --etag-compare build/ca-bundle-etag.txt --etag-save build/ca-bundle-etag.txt --output resources/config/ca-bundle.crt https://curl.se/ca/cacert.pem
  21. - name: Create Pull Request
  22. uses: peter-evans/create-pull-request@a4f52f8033a6168103c2538976c07b467e8163bc
  23. with:
  24. token: ${{ secrets.COMMAND_BOT_PAT }}
  25. commit-message: "fix(security): Update CA certificate bundle"
  26. committer: GitHub <noreply@github.com>
  27. author: nextcloud-command <nextcloud-command@users.noreply.github.com>
  28. signoff: true
  29. branch: automated/noid/${{ matrix.branches }}-update-ca-cert-bundle
  30. title: "[${{ matrix.branches }}] fix(security): Update CA certificate bundle"
  31. body: |
  32. Auto-generated update of CA certificate bundle from [https://curl.se/docs/caextract.html](https://curl.se/docs/caextract.html)
  33. labels: |
  34. dependencies
  35. 3. to review
  36. reviewers: ChristophWurst, miaulalala, nickvergessen