Skip to content

Commit 0a7b625

Browse files
committed
Looks like packages.microsoft is down
1 parent 1523b60 commit 0a7b625

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/dashboard.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ jobs:
3131
# install cpanminus
3232
# cpanm-options: --notest
3333

34-
- name: Update Ubuntu Packages
35-
run: |
36-
sudo apt-get update
37-
# sudo apt-get -y upgrade
38-
sudo ntpdate -u pool.ntp.org
39-
if: runner.os == 'Linux'
34+
# - name: Update Ubuntu Packages
35+
# run: |
36+
# sudo apt-get update
37+
# sudo apt-get -y upgrade
38+
# sudo ntpdate -u pool.ntp.org
39+
# if: runner.os == 'Linux'
4040

4141
# Install module dependencies (from cpanfile or manually)
4242
- name: Install dependencies

t/generate.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use Test::Most;
66

77
use_ok('Data::Random::String::Matches');
88

9-
like(Data::Random::String::Matches->create_random_string(length => 10, regex => '^\d{2}$'), qr/^\d{2}$/, 'generated string is 2 digits');
9+
like(Data::Random::String::Matches->create_random_string(regex => '^\d{2}$'), qr/^\d{2}$/, 'generated string is 2 digits');
1010

1111
subtest 'create_random_string compatibility' => sub {
1212
my $str = Data::Random::String::Matches->create_random_string(

0 commit comments

Comments
 (0)