From 325273d47aed5477db9a2c5a6c990767b03965fe Mon Sep 17 00:00:00 2001 From: maheshrijal <62394512+maheshrijal@users.noreply.github.com> Date: Thu, 26 Sep 2024 12:47:34 +0530 Subject: [PATCH] fix more lint --- tasks/vscode.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tasks/vscode.yml b/tasks/vscode.yml index c1147b1..db935c2 100644 --- a/tasks/vscode.yml +++ b/tasks/vscode.yml @@ -1,19 +1,19 @@ --- - name: Add Microsoft GPG key - apt_key: + ansible.builtin.apt_key: url: https://packages.microsoft.com/keys/microsoft.asc state: present - name: Add VSCode repository - apt_repository: + ansible.builtin.apt_repository: repo: 'deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main' state: present - name: Update APT package index - apt: - update_cache: yes + ansible.builtin.apt: + update_cache: true - name: Install Visual Studio Code - apt: + ansible.builtin.apt: name: code state: present