Skip to content

Bump github.com/caddyserver/certmagic from 0.21.4 to 0.21.7 #850

Bump github.com/caddyserver/certmagic from 0.21.4 to 0.21.7

Bump github.com/caddyserver/certmagic from 0.21.4 to 0.21.7 #850

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
test:
strategy:
matrix:
go-version: [1.22.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Install Node
uses: actions/setup-node@v4
- name: Install Dependencies
run: make deps
- name: Lint
run: make lint
- name: Build
run: make release
- name: Test
run: go test ./...