File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 11# brian's standard GitHub Actions Ubuntu config for Perl 5 modules
2- # version 20250811 .001
2+ # version 20251210 .001
33# https://github.com/briandfoy/github_workflows
44# https://github.com/features/actions
55# This file is licensed under the Artistic License 2.0
7474 pull_request :
7575 # weekly build on the master branch just to see what CPAN is doing
7676 schedule :
77- - cron : " 36 0 * * 3 "
77+ - cron : " 39 13 * * 0 "
7878jobs :
7979 perl :
8080 environment : automated_testing
@@ -101,18 +101,18 @@ jobs:
101101 run : uname -a
102102 - name : setup platform
103103 run : |
104- apt-get -y update
105- apt-get -y upgrade
106- apt-get -y install \
104+ apt-get -y -o Acquire::Retries=5 update
105+ apt-get -y -o Acquire::Retries=5 upgrade
106+ apt-get -y -o Acquire::http::No-Cache=True -o Acquire::Retries=5 install \
107107 curl \
108108 jq \
109109 ${{ vars.UBUNTU_EXTRA_APT_GET }}
110110
111111 curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg --output /usr/share/keyrings/githubcli-archive-keyring.gpg
112112 chmod go+r /usr/share/keyrings/githubcli-archive-keyring.gpg
113113 echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null
114- apt update
115- apt-get -y install gh
114+ apt -y -o Acquire::Retries=5 update
115+ apt-get -y -o Acquire::http::No-Cache=True -o Acquire::Retries=5 install gh
116116
117117 git config --global --add safe.directory $(pwd)
118118 - name : Perl version check
You can’t perform that action at this time.
0 commit comments