From f7072c80c351341b6009d53ddf95d75d56dc9252 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20Fredrik=20Ki=C3=A6r?= <31612826+anders-kiaer@users.noreply.github.com> Date: Fri, 2 Dec 2022 12:56:29 +0100 Subject: [PATCH] Update workflow to remove `node 12` deprecation warnings in CI (#280) --- .github/workflows/webviz-core-components.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/webviz-core-components.yml b/.github/workflows/webviz-core-components.yml index 4c57a1a2..5036332e 100644 --- a/.github/workflows/webviz-core-components.yml +++ b/.github/workflows/webviz-core-components.yml @@ -23,10 +23,10 @@ jobs: steps: - name: 📖 Checkout commit locally - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: 🐍 Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }}