From 51e1078305f44f904d5f49e1db6821c643e2372e Mon Sep 17 00:00:00 2001 From: Michalina Date: Wed, 21 Feb 2024 13:54:18 +0100 Subject: [PATCH] Update actions to versions running on Node20 As per https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/, GitHub has started a deprecation process for the GitHub Actions that run on Node16. We're updating Actions that use this version of Node to newer versions, running on Node20. --- .github/workflows/client.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/client.yml b/.github/workflows/client.yml index e2df8f9..83d3e8c 100644 --- a/.github/workflows/client.yml +++ b/.github/workflows/client.yml @@ -13,10 +13,10 @@ jobs: client-build-and-test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: "1.18" @@ -36,7 +36,7 @@ jobs: if: github.event_name != 'schedule' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: securego/gosec@master with: args: ./... @@ -45,7 +45,7 @@ jobs: if: github.event_name != 'schedule' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Lint Go uses: keep-network/golint-action@v1.0.2