Skip to content

Commit

Permalink
ci(update): update actions includes
Browse files Browse the repository at this point in the history
  • Loading branch information
qvalentin committed Jan 27, 2024
1 parent 083fb39 commit 983f9a1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: build
run: |
make build-release
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
steps:

- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Lint
run: make lint
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
steps:

- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Run tests
run: make test
Expand All @@ -33,13 +33,13 @@ jobs:
name: tests
strategy:
matrix:
go-version: [1.21.6]
go-version: [1.19.1]
os: [windows-2019]
runs-on: ${{ matrix.os }}
steps:

- name: Install Go
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}

Expand All @@ -49,7 +49,7 @@ jobs:
version: 12.2.0

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Run tests
run: make test
Expand Down

0 comments on commit 983f9a1

Please sign in to comment.