From 4874798c9a78e5e99d7872c19eaab85d833b5445 Mon Sep 17 00:00:00 2001 From: ICHINOSE Shogo Date: Sun, 23 Jul 2023 17:21:17 +0900 Subject: [PATCH] bump GitHub Actions actions/checkout@v2, actions/setup-go@v2 and codecov/codecov-action@v1 use Node.js v12 that is already deprecated. https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ We need upgrade the latest one. --- .github/workflows/test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 1906a17..fe91f96 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -14,8 +14,8 @@ jobs: go: ["1.15", "1.16"] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 - - uses: actions/setup-go@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-go@v4 with: go-version: ${{ matrix.go }} @@ -24,4 +24,4 @@ jobs: - run: go test ./... -v -cover -coverprofile coverage.out - run: go test -bench . -benchmem - - uses: codecov/codecov-action@v1 + - uses: codecov/codecov-action@v3