Thanks to visit codestin.com
Credit goes to github.com

Skip to content

chore(dogfood): fix dogfood image #7603

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 19, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
chore(dogfood): update keys, add script to do so
  • Loading branch information
johnstcn committed May 19, 2023
commit cb3dece64a5aaa4fe62b3a026573a2545dea7ab1
Binary file modified dogfood/files/usr/share/keyrings/ansible.gpg
Binary file not shown.
Binary file modified dogfood/files/usr/share/keyrings/docker.gpg
Binary file not shown.
Binary file modified dogfood/files/usr/share/keyrings/github-cli.gpg
Binary file not shown.
Binary file modified dogfood/files/usr/share/keyrings/google-chrome.gpg
Binary file not shown.
Binary file modified dogfood/files/usr/share/keyrings/google-cloud.gpg
Binary file not shown.
Binary file modified dogfood/files/usr/share/keyrings/hashicorp.gpg
Binary file not shown.
Binary file modified dogfood/files/usr/share/keyrings/microsoft.gpg
Binary file not shown.
Binary file modified dogfood/files/usr/share/keyrings/neovim.gpg
Binary file not shown.
Binary file modified dogfood/files/usr/share/keyrings/nodesource.gpg
Binary file not shown.
Binary file modified dogfood/files/usr/share/keyrings/postgresql.gpg
Binary file not shown.
Binary file modified dogfood/files/usr/share/keyrings/yarnpkg.gpg
Binary file not shown.
62 changes: 62 additions & 0 deletions dogfood/update-keys.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
#!/usr/bin/env bash

set -euo pipefail

PROJECT_ROOT="$(git rev-parse --show-toplevel)"

curl_flags=(
--silent
--show-error
--location
)

gpg_flags=(
--dearmor
--yes
)

pushd "$PROJECT_ROOT/dogfood/files/usr/share/keyrings"
# Upstream Docker signing key
curl "${curl_flags[@]}" "https://download.docker.com/linux/ubuntu/gpg" | \
gpg "${gpg_flags[@]}" --output="docker.gpg"

# Google Cloud signing key
curl "${curl_flags[@]}" "https://packages.cloud.google.com/apt/doc/apt-key.gpg" | \
gpg "${gpg_flags[@]}" --output="google-cloud.gpg"

# Google Linux Software repository signing key (Chrome)
curl "${curl_flags[@]}" "https://dl.google.com/linux/linux_signing_key.pub" | \
gpg "${gpg_flags[@]}" --output="google-chrome.gpg"

# Microsoft repository signing key (Edge)
curl "${curl_flags[@]}" "https://packages.microsoft.com/keys/microsoft.asc" | \
gpg "${gpg_flags[@]}" --output="microsoft.gpg"

# Upstream PostgreSQL signing key
curl "${curl_flags[@]}" "https://www.postgresql.org/media/keys/ACCC4CF8.asc" | \
gpg "${gpg_flags[@]}" --output="postgresql.gpg"

# NodeSource signing key
curl "${curl_flags[@]}" "https://deb.nodesource.com/gpgkey/nodesource.gpg.key" | \
gpg "${gpg_flags[@]}" --output="nodesource.gpg"

# Yarnpkg signing key
curl "${curl_flags[@]}" "https://dl.yarnpkg.com/debian/pubkey.gpg" | \
gpg "${gpg_flags[@]}" --output="yarnpkg.gpg"

# Ansible PPA signing key
curl "${curl_flags[@]}" "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x6125e2a8c77f2818fb7bd15b93c4a3fd7bb9c367" | \
gpg "${gpg_flags[@]}" --output="ansible.gpg"

# Neovim signing key
curl "${curl_flags[@]}" "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x9dbb0be9366964f134855e2255f96fcf8231b6dd" | \
gpg "${gpg_flags[@]}" --output="neovim.gpg"

# Hashicorp signing key
curl "${curl_flags[@]}" "https://apt.releases.hashicorp.com/gpg" | \
gpg "${gpg_flags[@]}" --output="hashicorp.gpg"

# GitHub CLI signing key
curl "${curl_flags[@]}" "https://cli.github.com/packages/githubcli-archive-keyring.gpg" | \
gpg "${gpg_flags[@]}" --output="github-cli.gpg"
popd