Skip to content

Commit

Permalink
Update CI actions
Browse files Browse the repository at this point in the history
  • Loading branch information
heaths committed Feb 19, 2024
1 parent 1757bf7 commit 87e6903
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ jobs:
goos: darwin
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Go ${{ env.GOVERSION }}
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ${{ env.GOVERSION }}
cache: false # Set to `true` when dependencies are added.
Expand All @@ -55,7 +55,7 @@ jobs:
- name: Lint
if: ${{ !cancelled() && matrix.lint }}
# cspell:ignore golangci
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v4
with:
only-new-issues: true
skip-pkg-cache: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
steps:
# Check out with full history to generate release notes.
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Release
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/heaths/gh-template

go 1.18
go 1.19

require (
github.com/MakeNowJust/heredoc v1.0.0
Expand Down

0 comments on commit 87e6903

Please sign in to comment.