Unverified Commit e0d63b57 authored by James Lamb's avatar James Lamb Committed by GitHub
Browse files

[ci] fix GPG key download for R Linux jobs (fixes #6038) (#6039)

* [ci] fix GPG key download for R Linux jobs

* force use of the new config file

* empty commit
parent 37c3d3fb
...@@ -36,7 +36,10 @@ fi ...@@ -36,7 +36,10 @@ fi
# #
# `devscripts` is required for 'checkbashisms' (https://github.com/r-lib/actions/issues/111) # `devscripts` is required for 'checkbashisms' (https://github.com/r-lib/actions/issues/111)
if [[ $OS_NAME == "linux" ]]; then if [[ $OS_NAME == "linux" ]]; then
mkdir -p ~/.gnupg
echo "disable-ipv6" >> ~/.gnupg/dirmngr.conf
sudo apt-key adv \ sudo apt-key adv \
--homedir ~/.gnupg \
--keyserver keyserver.ubuntu.com \ --keyserver keyserver.ubuntu.com \
--recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9 || exit -1 --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9 || exit -1
sudo add-apt-repository \ sudo add-apt-repository \
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment