From cc71150d537e0261d8017863fb94c56edb536455 Mon Sep 17 00:00:00 2001 From: genofire Date: Thu, 18 Jul 2024 11:18:55 +0200 Subject: [PATCH] fix(ci): update github-actions --- .github/workflows/go.yml | 22 +++++++++++----------- .github/workflows/release.yml | 4 ++-- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index fde88cc5..e7043898 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -14,15 +14,15 @@ jobs: steps: - name: Setup Go ${{ matrix.go-version }} - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Cache Go modules - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/go/pkg/mod key: ${{ runner.os }}-${{ matrix.go-version }}-go-${{ hashFiles('**/go.sum') }} @@ -32,7 +32,7 @@ jobs: - name: Run tests run: make test - - uses: codecov/codecov-action@v2 + - uses: codecov/codecov-action@v4 with: file: coverage.out @@ -44,15 +44,15 @@ jobs: steps: - name: Setup Go ${{ matrix.go-version }} - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Cache Go modules - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/go/pkg/mod key: ${{ runner.os }}-${{ matrix.go-version }}-go-${{ hashFiles('**/go.sum') }} @@ -60,7 +60,7 @@ jobs: ${{ runner.os }}-${{ matrix.go-version }}-go- - name: Run linter - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v6 with: version: latest skip-cache: true @@ -74,10 +74,10 @@ jobs: os: linux runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v5 with: go-version: '1.21' - name: Build @@ -87,7 +87,7 @@ jobs: GOARCH: ${{ matrix.arch }} CGO_ENABLED: 0 - name: Archive build artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: build-${{ matrix.arch }}-${{ matrix.os }} path: yanic_* diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d026bd8b..409de615 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,12 +23,12 @@ jobs: pull-requests: write # to be able to comment on released pull requests steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: "lts/*"