From 983f9a16875952cbde6e460c2346427f1df167ed Mon Sep 17 00:00:00 2001 From: qvalentin Date: Sat, 27 Jan 2024 20:27:48 +0100 Subject: [PATCH] ci(update): update actions includes --- .github/workflows/artifacts.yml | 2 +- .github/workflows/lint.yml | 4 ++-- .github/workflows/tests.yml | 10 +++++----- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index 1540058a..d868b5e6 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -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 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index dbd639c1..d895464f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7fdbb9f3..7430185a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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 @@ -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 }} @@ -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