Skip to content

Commit

Permalink
Update ci.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksraiden authored Jan 7, 2025
1 parent a8b601d commit a77d037
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: 1.23

- name: Checkout Code Base
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: apache/skywalking-eyes/header@v0.4.0
- uses: apache/skywalking-eyes/header@v0.6.0
with:
config: .github/config/licenserc.yaml

- name: Restore Go Module Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}
Expand All @@ -63,17 +63,17 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ${{matrix.go-version}}

- name: Checkout Code Base
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Restore Go Module Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}
Expand All @@ -87,7 +87,7 @@ jobs:
run: make test

- name: Upload Coverage Report
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v5
with:
file: ./coverage.out
flags: unittests
Expand Down

0 comments on commit a77d037

Please sign in to comment.