Skip to content

Commit

Permalink
Updated Github Action versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
TheKigen committed Oct 30, 2023
1 parent e8e11e0 commit 00b1835
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/t1net.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,34 +16,34 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: '^1.16'
go-version-file: 'go.mod'
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup golangci-lint
uses: golangci/golangci-lint-action@v3.3.1
uses: golangci/golangci-lint-action@v3.7.0
with:
version: v1.50.1
version: v1.55.1
args: --verbose
test:
needs: lint
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
go: [1.16, 1.17, 1.18, 1.19]
go: [1.20, 1.21]
name: ${{ matrix.os }} @ Go ${{ matrix.go }}
runs-on: ${{ matrix.os }}
env:
GOPROXY: https://proxy.golang.org
steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}

- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.ref }}

Expand Down

0 comments on commit 00b1835

Please sign in to comment.