From 21aad3ccf4bf7b396bf9b86b4621be020a90b4f4 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sat, 12 Oct 2024 13:18:31 +0200 Subject: [PATCH 1/2] Upgrade .circleci/config.yml --- .circleci/config.yml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c5d62d7fa5e..2b3d9b81730 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,8 +1,8 @@ version: 2.1 orbs: - codecov: codecov/codecov@3.2.2 - node: circleci/node@5.1.0 + codecov: codecov/codecov@4.2.0 + node: circleci/node@6.2.0 jobs: tests: @@ -26,9 +26,11 @@ jobs: - run: git submodule update --init - run: sudo apt update - run: sudo apt install -y rclone - - run: pip install --user tox + - run: pipx install tox - run: tox -e py310 - codecov/upload + - store_test_results: + path: test-results tests-ext-theme: docker: @@ -50,8 +52,10 @@ jobs: - run: git submodule update --init - run: sudo apt update - run: sudo apt install -y rclone - - run: pip install --user tox + - run: pipx install tox - run: tox -e ext-theme + - store_test_results: + path: test-results tests-embedapi: docker: @@ -60,9 +64,11 @@ jobs: - checkout - run: git submodule sync - run: git submodule update --init - - run: pip install --user 'tox<4' + - run: pipx install 'tox<4' - run: tox --version - run: tox -c tox.embedapi.ini + - store_test_results: + path: test-results checks: docker: @@ -81,7 +87,7 @@ jobs: - restore_cache: keys: - pre-commit-cache-{{ checksum "pre-commit-cache-key.txt" }} - - run: pip install --user 'tox<5' + - run: pipx install 'tox<5' - run: tox -e pre-commit - run: tox -e migrations - node/install: @@ -94,7 +100,6 @@ jobs: - ~/.cache/pre-commit workflows: - version: 2 test: jobs: - checks From b400d10daaa8df4ceb22879b0501ac62faae402d Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sun, 27 Oct 2024 09:27:55 +0100 Subject: [PATCH 2/2] More upgrades --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2b3d9b81730..7127a14804f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,8 +1,8 @@ version: 2.1 orbs: - codecov: codecov/codecov@4.2.0 - node: circleci/node@6.2.0 + codecov: codecov/codecov@5.0.0 + node: circleci/node@6.3.0 jobs: tests: