mirror of
https://github.com/GAM-team/GAM.git
synced 2026-06-28 09:51:36 +00:00
31 lines
658 B
YAML
31 lines
658 B
YAML
name: Check for Google Root CA Updates
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
schedule:
|
|
- cron: '23 23 * * *'
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
working-directory: src
|
|
|
|
jobs:
|
|
check-apis:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
with:
|
|
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
|
|
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
|
|
|
|
- name: pwd
|
|
run: pwd
|
|
|
|
- name: ls
|
|
run: ls -alRF
|
|
|
|
- name: Check for updates
|
|
run: curl -o src/roots.pem -vvvv https://pki.goog/roots.pem
|