From 3fa16bc882bf34da8b500a861c89e4e02a15b5ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javi=20Mart=C3=ADn?= Date: Fri, 1 Mar 2024 23:46:30 +0100 Subject: [PATCH] Update checkout action to version 4 We were getting some warnings with version 3: Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ --- .github/workflows/db_schema.yml | 2 +- .github/workflows/docker.yml | 2 +- .github/workflows/linters.yml | 2 +- .github/workflows/tests.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/db_schema.yml b/.github/workflows/db_schema.yml index 636268ee5..637f371ea 100644 --- a/.github/workflows/db_schema.yml +++ b/.github/workflows/db_schema.yml @@ -25,7 +25,7 @@ jobs: PGUSER: consul POSTGRES_HOST: postgres steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: bundler-cache: true diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 30f48020f..8a72135d2 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Docker Buildx id: buildx diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index cc036793e..f7383bdef 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - run: | git fetch --no-tags --prune origin +refs/heads/*:refs/remotes/origin/* - name: Setup Ruby diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5ed892b63..5a171997d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -35,7 +35,7 @@ jobs: ci_node_total: [5] ci_node_index: [0, 1, 2, 3, 4] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: bundler-cache: true