From 7f6cde7402f8cf55387b29dc68490267c58ad13d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 30 Sep 2023 01:00:13 +0000 Subject: [PATCH 1/3] feat(Dependencies): Update dependency coder/code-server to v4.17.1 | datasource | package | from | to | | ----------- | ----------------- | ------- | ------- | | github-tags | coder/code-server | v4.17.0 | v4.17.1 | --- vscode/vscode_metadata.yml | 2 +- vscode/vscode_vars_file.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/vscode/vscode_metadata.yml b/vscode/vscode_metadata.yml index 768beb48..00a04165 100644 --- a/vscode/vscode_metadata.yml +++ b/vscode/vscode_metadata.yml @@ -18,4 +18,4 @@ wiki_link: "" logo_url: "https://cloud.denbi.de/static/images/vscode.png" info_url: "" information_for_display: - version: v4.17.0 + version: v4.17.1 diff --git a/vscode/vscode_vars_file.yml b/vscode/vscode_vars_file.yml index 72f20a79..3549a926 100644 --- a/vscode/vscode_vars_file.yml +++ b/vscode/vscode_vars_file.yml @@ -1,6 +1,6 @@ --- vscode_vars: INSTALL_SCRIPT_URL: https://code-server.dev/install.sh - VSCODE_VERSION: v4.17.0 + VSCODE_VERSION: v4.17.1 DEFAULT_USER: ubuntu PORT: 3000 From c8454a3a1c29dda9d88ad2cabefda2cb88e8ebed Mon Sep 17 00:00:00 2001 From: dweinholz Date: Fri, 6 Oct 2023 08:11:07 +0200 Subject: [PATCH 2/3] Update 001-apt.yml --- cluster/roles/common/tasks/001-apt.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cluster/roles/common/tasks/001-apt.yml b/cluster/roles/common/tasks/001-apt.yml index 69cc344a..16ca2fa1 100644 --- a/cluster/roles/common/tasks/001-apt.yml +++ b/cluster/roles/common/tasks/001-apt.yml @@ -57,21 +57,21 @@ update_cache: "yes" upgrade: "yes" -- name: Import deadsnake PPA for python3.8 +- name: Import deadsnake PPA for python3.9 ansible.builtin.apt_repository: repo: ppa:deadsnakes/ppa update_cache: true tags: always -- name: Install python3.8 +- name: Install python3.9 ansible.builtin.apt: state: present - name: python3.8 + name: python3.9 -- name: Install Python 3.8 and reset selection to auto +- name: Install Python 3.9 and reset selection to auto community.general.alternatives: name: python - path: /usr/bin/python3.8 + path: /usr/bin/python3.9 link: /usr/bin/python state: auto From 94c5544c727f0ebd26bb27dd2edf93396496db0d Mon Sep 17 00:00:00 2001 From: dweinholz Date: Fri, 6 Oct 2023 08:20:11 +0200 Subject: [PATCH 3/3] Update 001-apt.yml --- cluster/roles/common/tasks/001-apt.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cluster/roles/common/tasks/001-apt.yml b/cluster/roles/common/tasks/001-apt.yml index 16ca2fa1..e1478cbe 100644 --- a/cluster/roles/common/tasks/001-apt.yml +++ b/cluster/roles/common/tasks/001-apt.yml @@ -84,8 +84,8 @@ - libffi-dev - libssl-dev - software-properties-common - - python3.8-dev - - python3.8-venv + - python3.9-dev + - python3.9-venv - python3-pip - python3-setuptools state: present