diff options
| author | Abhinav Gupta <mail@abhinavg.net> | 2023-06-01 10:55:06 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-01 10:55:06 -0700 |
| commit | 36855596b4c0febcf046d5ff744e2bc26bbb6880 (patch) | |
| tree | c862fc6f8ff99031be267aa80fce86eaf0dbd809 /.github/workflows/go.yml | |
| parent | 04539ca4b920c53d342887794f1ea02d21464814 (diff) | |
| download | sally-36855596b4c0febcf046d5ff744e2bc26bbb6880.tar.gz | |
ci: Update actions (#99)
Updates the checkout, setup-go, and codecov GitHub Actions.
Supersedes #88, #89, #90
Diffstat (limited to '')
| -rw-r--r-- | .github/workflows/go.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 7561b25..a04b4ab 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -18,7 +18,7 @@ jobs: uses: actions/checkout@v3 - name: Setup Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v4 with: go-version: 1.20.x cache: true @@ -30,7 +30,7 @@ jobs: run: make cover - name: Upload coverage to codecov.io - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v3 docker: runs-on: ubuntu-latest |