Skip to content

Commit de7226e

Browse files
committed
Updated GitHub workflows from https://github.com/briandfoy/github_workflows
5e67171d73a07a22696dac841439dff82fe0acb9 * �[92mlinux.yml�[0m upgraded: 20250811.001 -> 20251210.001
1 parent ff33a84 commit de7226e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/linux.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
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
@@ -74,7 +74,7 @@ on:
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"
7878
jobs:
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

0 commit comments

Comments
 (0)