From 93f5229222087a1780de697daa7272409cf02bfc Mon Sep 17 00:00:00 2001 From: Ernesto Ongaro Date: Wed, 21 Feb 2024 16:01:26 +0000 Subject: [PATCH] Update Github Actions Versions Was getting this message: Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions/setup-node@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ --- website/docs/guides/custom-cicd-pipelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/guides/custom-cicd-pipelines.md b/website/docs/guides/custom-cicd-pipelines.md index 1778098f752..acf751deda1 100644 --- a/website/docs/guides/custom-cicd-pipelines.md +++ b/website/docs/guides/custom-cicd-pipelines.md @@ -261,8 +261,8 @@ jobs: DBT_JOB_BRANCH: ${{ github.ref_name }} steps: - - uses: "actions/checkout@v3" - - uses: "actions/setup-python@v4" + - uses: "actions/checkout@v4" + - uses: "actions/setup-python@v5" with: python-version: "3.9" - name: Run dbt Cloud job