Skip to content

Commit

Permalink
.github: update CI runner
Browse files Browse the repository at this point in the history
Builds are currently failing because something is running Node 16
which is no longer supported.
  • Loading branch information
kevinburkesegment committed Jun 19, 2024
1 parent cf67f29 commit bc0fa9c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
runs-on: ${{ matrix.label }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup Go (${{ matrix.go }})
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version: '>=1.20'

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: golangci-lint
uses: golangci/golangci-lint-action@v3.1.0
uses: golangci/golangci-lint-action@v6.0.1
with:
version: v1.53
version: v1.59.1

0 comments on commit bc0fa9c

Please sign in to comment.