From 68dd94f62dc5fd70673d3d44206da0795dca878a Mon Sep 17 00:00:00 2001 From: Jake Heath <76011913+jakeyheath@users.noreply.github.com> Date: Mon, 16 May 2022 11:22:15 -0700 Subject: [PATCH] fix: mods not needed anymore (#392) --- .github/workflows/ci.yml | 10 ---------- .github/workflows/mods.yml | 19 ------------------- 2 files changed, 29 deletions(-) delete mode 100644 .github/workflows/mods.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e954e10..98be24a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,16 +13,6 @@ jobs: - uses: actions/checkout@v2 - id: list_dirs run: echo "::set-output name=matrix::$(ls -d */|sed -e 's/\///'|grep -v 'bless-ca\|scripts'|jq -cnR '[inputs | select(length>0)]')" - - check-mod: - name: check-mod - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-go@v2 - with: - go-version: 1.15.5 - - run: make check-mod lint: name: lint runs-on: ubuntu-latest diff --git a/.github/workflows/mods.yml b/.github/workflows/mods.yml deleted file mode 100644 index 7b5a7282..00000000 --- a/.github/workflows/mods.yml +++ /dev/null @@ -1,19 +0,0 @@ -on: push - -jobs: - run: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-go@v2 - with: - go-version: '1.15.2' - - name: fix go modules - run: | - go mod tidy - git add go.* - git config --global user.name "github-actions[bot]" - git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" - git commit -m "tidy modules" || true - git push -