Revocation Checker #69
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Revocation Checker | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| schedule: | |
| - cron: "0 0 * * *" | |
| jobs: | |
| checker: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.24' | |
| - name: Build | |
| run: go build -v ./... | |
| - name: Run | |
| run: | | |
| wget --quiet https://raw.githubusercontent.com/FiloSottile/intermediates/refs/heads/main/intermediates.pem | |
| ./Gocrl -check=false | |
| ./Gocrl -update=false |