Skip to content

Commit

Permalink
Merge pull request #132 from cloudfoundry/update-github-actions
Browse files Browse the repository at this point in the history
Bump Github Actions to use Node20
  • Loading branch information
gmllt authored Jun 20, 2024
2 parents c299790 + 4c1dfed commit 769d2e9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: set up go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: ">=1.20"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: set up go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: ">=1.20"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: set up go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: ">=1.20"

Expand Down
3 changes: 2 additions & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
run:
timeout: 30m
output:
format: line-number
formats:
- format: line-number
linters:
disable-all: false
enable:
Expand Down

0 comments on commit 769d2e9

Please sign in to comment.