Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ansible/playbooks/create-webhost.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
loop_control:
loop_var: repo
with_items:
- deb https://deb.nodesource.com/node_6.x xenial main
- deb-src https://deb.nodesource.com/node_6.x xenial main
- deb https://deb.nodesource.com/node_22.x nodistro main
- deb-src https://deb.nodesource.com/node_22.x nodistro main
Comment on lines +45 to +46

- name: install node.js
apt: name=nodejs state=present
Expand Down
2 changes: 1 addition & 1 deletion ansible/roles/github-bot/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

- name: Bootstrap | Add nodesource repo
apt_repository:
repo: deb [arch=amd64 signed-by=/etc/apt/keyrings/nodesource-repo.gpg.asc] https://deb.nodesource.com/node_20.x nodistro main
repo: deb [arch=amd64 signed-by=/etc/apt/keyrings/nodesource-repo.gpg.asc] https://deb.nodesource.com/node_22.x nodistro main
state: present

- name: Bootstrap | APT Update and upgrade
Expand Down
4 changes: 2 additions & 2 deletions ansible/roles/jenkins-workspace/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@
dest: /etc/apt/keyrings/nodesource-repo.gpg.asc
url: https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key

- name: Add nodesource 20 repo
- name: Add nodesource 22 repo
apt_repository:
repo: deb [arch=amd64 signed-by=/etc/apt/keyrings/nodesource-repo.gpg.asc] https://deb.nodesource.com/node_20.x nodistro main
repo: deb [arch=amd64 signed-by=/etc/apt/keyrings/nodesource-repo.gpg.asc] https://deb.nodesource.com/node_22.x nodistro main
state: present

- name: Install node
Expand Down
2 changes: 1 addition & 1 deletion ansible/roles/metrics/files/index-generator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-slim
FROM node:22-slim

WORKDIR /usr/src/app

Expand Down
2 changes: 1 addition & 1 deletion ansible/roles/metrics/files/process-cloudflare/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-slim
FROM node:22-slim

WORKDIR /usr/src/app

Expand Down
2 changes: 1 addition & 1 deletion ansible/roles/metrics/files/summaries/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-slim
FROM node:22-slim

WORKDIR /usr/src/app

Expand Down
2 changes: 1 addition & 1 deletion ansible/roles/metrics/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

- name: Bootstrap | Add nodesource repo
apt_repository:
repo: deb https://deb.nodesource.com/node_12.x bionic main
repo: deb https://deb.nodesource.com/node_22.x nodistro main
state: present

- name: GCP | Install GCP APT key
Expand Down
2 changes: 1 addition & 1 deletion ansible/roles/unofficial-builds/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

- name: Bootstrap | Add nodesource repo
ansible.builtin.apt_repository:
repo: "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_16.x nodistro main"
repo: "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_22.x nodistro main"
state: present

- name: letsencrypt | Add certbot snap
Expand Down