From e84cf22f70ce920e30b83efe43a8092f93d5a28b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 08:59:11 +0000 Subject: [PATCH] Update the dependencies of workflows Update actions/upload-artifact action to v3.1.3 Update step-security/harden-runner action to v2.7.0 Update actions/setup-go action to v4.1.0 Update actions/checkout action to v3.6.0 Update actions/cache action to v4 Update actions/setup-go action to v5 Update actions/checkout action to v4 Update actions/upload-artifact action to v4 ci: upload coverage with a unique name ci: use runner.os instead of matrix.os --- .github/workflows/testing.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 2847f82..47a61d7 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -32,24 +32,24 @@ jobs: go: ["1.18", "1.19", "1.20", "1.21", "1.22" ] steps: - name: Harden Runner - uses: step-security/harden-runner@1f99358870fe1c846a3ccba386cc2b2246836776 # v2.2.1 + uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0 with: egress-policy: audit disable-telemetry: true - name: Set up Go ${{ matrix.go }} - uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4.0.0 + uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 with: go-version: ${{ matrix.go }} - name: Check out code into the Go module directory - uses: actions/checkout@24cb9080177205b6e8c946b17badbe402adc938f # v3.4.0 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: persist-credentials: false fetch-depth: 0 - name: Cache go module - uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7 # v3.0.11 + uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 with: path: | ~/.cache/go-build @@ -71,9 +71,9 @@ jobs: make test-cover - name: Upload coverage - uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 + uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 with: - name: coverage + name: coverage-${{ runner.os }}-go-${{ matrix.go }} path: coverage.* - name: Run integration test