From b246db77bec213a9f022239704452946b8aaf47f Mon Sep 17 00:00:00 2001 From: Sean Marquez Date: Tue, 17 Oct 2023 14:44:27 -0700 Subject: [PATCH 1/4] update checkout to v4 in main workflow --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 11ddb07..caa82d0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -36,7 +36,7 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - name: Checkout github repo - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Docker meta id: docker_meta From 7f61c11dadf02fb70eada4460d08fe928474feb4 Mon Sep 17 00:00:00 2001 From: Sean Marquez Date: Tue, 17 Oct 2023 15:00:44 -0700 Subject: [PATCH 2/4] npm install -g npm-cli-login --- playbook.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/playbook.yaml b/playbook.yaml index aca6442..668efde 100644 --- a/playbook.yaml +++ b/playbook.yaml @@ -85,6 +85,7 @@ generator_code_version: "1.7.5" oclif_version: "3.10.0" typescript_version: "5.1.3" + npm_cli_login_version: "1.0.0" tasks: # Test Node JS Tools versions - name: Install Yarn @@ -152,6 +153,8 @@ version: "{{ oclif_version }}" - name: typescript version: "{{ typescript_version }}" + - name: npm-cli-login + version: "{{ npm_cli_login_version }}" - # install keychain, git, and @capsulecorplab .vimrc and .gitconfig From 9046c70245b7f21cd8e8117ae8233a571de5c759 Mon Sep 17 00:00:00 2001 From: Sean Marquez Date: Wed, 18 Oct 2023 21:52:11 -0700 Subject: [PATCH 3/4] attempt to fix firefox installation replace ansible role, do1jlr.install_firefox w/ staticdev.firefox --- playbook.yaml | 31 +++++++++++++++++++++++++++++-- requirements.yaml | 2 +- 2 files changed, 30 insertions(+), 3 deletions(-) diff --git a/playbook.yaml b/playbook.yaml index 668efde..80610d1 100644 --- a/playbook.yaml +++ b/playbook.yaml @@ -648,7 +648,9 @@ # install readers hosts: localhost connection: local - tags: install_readers + tags: + - install_readers + - install_firefox tasks: - name: install Evince @@ -656,9 +658,34 @@ name: evince update_cache: yes + # install firefox + + vars: + firefox_profiles: + default: + extensions: + - ublock-origin + preferences: + network.cookie.cookieBehavior: 1 + privacy.donottrackheader.enabled: true + datareporting.healthreport.uploadEnabled: false + secondprofile: + extensions: + - adblock-plus + preferences: + privacy.donottrackheader.enabled: false + privacy.trackingprotection.enabled: false + signon.rememberSignons: false + datareporting.healthreport.uploadEnabled: false + + pre_tasks: + - name: Update apt packages + apt: + update_cache: yes + roles: - role: webarchitect609.google_chrome - - role: do1jlr.install_firefox + - role: staticdev.firefox # Three dots indicate the end of a YAML document ... diff --git a/requirements.yaml b/requirements.yaml index 208e0fe..7522e22 100644 --- a/requirements.yaml +++ b/requirements.yaml @@ -5,6 +5,6 @@ - andrewrothstein.pandoc # https://galaxy.ansible.com/andrewrothstein/pandoc - gantsign.visual-studio-code # https://galaxy.ansible.com/gantsign/visual-studio-code - webarchitect609.google_chrome # https://galaxy.ansible.com/webarchitect609/google_chrome -- do1jlr.install_firefox # https://galaxy.ansible.com/do1jlr/install_firefox +- staticdev.firefox # https://galaxy.ansible.com/staticdev/firefox #- geerlingguy.pip # https://galaxy.ansible.com/geerlingguy/pip ... From ff27554cbda8b3a1e88f843ddf5a3a3ee6722743 Mon Sep 17 00:00:00 2001 From: Sean Marquez Date: Thu, 19 Oct 2023 11:16:56 -0700 Subject: [PATCH 4/4] update git_version to 2.42.0 --- playbook.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playbook.yaml b/playbook.yaml index 80610d1..64a905c 100644 --- a/playbook.yaml +++ b/playbook.yaml @@ -164,7 +164,7 @@ tags: install_utilities vars: - git_version: "2.41.0" + git_version: "2.42.0" git_version_to_install: "1:{{ git_version }}-0ppa1~ubuntu20.04.1" keychain_version: "2.8.5" keychain_version_to_install: "{{ keychain_version }}-1"