From cfc8a6d5f3c170dd36e4f1cba017933fefffe014 Mon Sep 17 00:00:00 2001 From: Ulderico Cirello Date: Thu, 28 Mar 2024 17:11:09 -0700 Subject: [PATCH] moq: update github action versions --- .github/workflows/test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 175f7cb..59e0fcf 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,10 +18,10 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} cache: true @@ -37,16 +37,16 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: 'stable' cache: true - name: golangci-lint cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/go/bin/golangci-lint key: ${{ runner.os }}-golangci-lint-v1.54.1