diff --git a/.github/workflows/deps.yml b/.github/workflows/deps.yml new file mode 100644 index 0000000..91440a2 --- /dev/null +++ b/.github/workflows/deps.yml @@ -0,0 +1,21 @@ +# https://github.com/actions/go-dependency-submission +name: dependency-submission +on: + push: + branches: + - master + +permissions: + contents: write + +jobs: + main: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v3 + with: + go-version: "1.20" + - uses: actions/go-dependency-submission@v1 + with: + go-mod-path: go.mod diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 51a4d41..3d7a5c6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,3 +31,12 @@ jobs: args: release --clean env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + + # https://github.com/marketplace/actions/go-proxy-warming + pkg-go-dev-warming: + name: Renew documentation + runs-on: ubuntu-latest + steps: + - name: Pull new module version + uses: andrewslotin/go-proxy-pull-action@master