86
86
env :
87
87
GITHUB_CONTEXT : ${{ toJson(github) }}
88
88
run : echo "$GITHUB_CONTEXT"
89
- - uses : actions/checkout@v2
89
+ - uses : actions/checkout@v3
90
90
with :
91
91
fetch-depth : 1000
92
92
- name : git setup
@@ -184,7 +184,7 @@ jobs:
184
184
run: |
185
185
sudo apt-get update
186
186
sudo apt-get install -y libgdbm-dev libdb-dev
187
- - uses: actions/checkout@v2
187
+ - uses: actions/checkout@v3
188
188
with:
189
189
fetch-depth: 0
190
190
if: steps.ci_config.outputs.ci_skip_sanity != 'true'
@@ -266,7 +266,7 @@ jobs:
266
266
run: |
267
267
sudo apt-get update
268
268
sudo apt-get install -y libgdbm-dev libdb-dev
269
- - uses: actions/checkout@v2
269
+ - uses: actions/checkout@v3
270
270
- name: git cfg
271
271
run: |
272
272
git config diff.renameLimit 999999
@@ -318,7 +318,7 @@ jobs:
318
318
run: |
319
319
apt-get update
320
320
apt-get install -y build-essential git-core libgdbm-dev libdb-dev
321
- # actions/checkout@v2 doesn't work in a i386 container: the GitHub runner
321
+ # actions/checkout@v3 doesn't work in a i386 container: the GitHub runner
322
322
# uses `node` that is installed on the host inside the container. The host
323
323
# is (likely) running x86_64 and using a binary build for x86_64 inside a
324
324
# i386 container just doesn't work.
@@ -366,7 +366,7 @@ jobs:
366
366
run: |
367
367
sudo apt-get update
368
368
sudo apt-get install -y libgdbm-dev libdb-dev
369
- - uses: actions/checkout@v2
369
+ - uses: actions/checkout@v3
370
370
- name: git cfg
371
371
run: |
372
372
git config diff.renameLimit 999999
@@ -418,7 +418,7 @@ jobs:
418
418
- "-Duseithreads -Duseshrplib"
419
419
420
420
steps:
421
- - uses: actions/checkout@v2
421
+ - uses: actions/checkout@v3
422
422
- name: Configure
423
423
run: |
424
424
sh ./Configure -des -Dusedevel ${{ matrix.CONFIGURE_ARGS }}
@@ -447,7 +447,7 @@ jobs:
447
447
448
448
steps:
449
449
- run: git config --global core.autocrlf false
450
- - uses: actions/checkout@v2
450
+ - uses: actions/checkout@v3
451
451
#- name: Install clcache
452
452
# shell: cmd
453
453
# run: |
@@ -503,7 +503,7 @@ jobs:
503
503
504
504
steps:
505
505
- run: git config --global core.autocrlf false
506
- - uses: actions/checkout@v2
506
+ - uses: actions/checkout@v3
507
507
- name: Set up Perl build environment
508
508
run: |
509
509
# skip installing perl if it is already installed.
@@ -555,7 +555,7 @@ jobs:
555
555
# we use Cygwin git, so no need to configure git here.
556
556
557
557
- name: Set up Cygwin
558
- uses: cygwin/cygwin-install-action@v2
558
+ uses: cygwin/cygwin-install-action@v3
559
559
with:
560
560
packages: >
561
561
cygwin-devel gcc-core gcc-g++ make w32api-headers binutils libtool
@@ -648,7 +648,7 @@ jobs:
648
648
run: |
649
649
sudo apt-get update
650
650
sudo apt-get install -y libgdbm-dev libdb-dev
651
- - uses: actions/checkout@v2
651
+ - uses: actions/checkout@v3
652
652
- name: git cfg
653
653
run: |
654
654
git config diff.renameLimit 999999
@@ -699,7 +699,7 @@ jobs:
699
699
run: |
700
700
sudo apt-get update
701
701
sudo apt-get install -y libgdbm-dev libdb-dev
702
- - uses: actions/checkout@v2
702
+ - uses: actions/checkout@v3
703
703
- name: git cfg
704
704
run: |
705
705
git config diff.renameLimit 999999
@@ -747,7 +747,7 @@ jobs:
747
747
run: |
748
748
sudo apt-get update
749
749
sudo apt-get install -y libgdbm-dev libdb-dev
750
- - uses: actions/checkout@v2
750
+ - uses: actions/checkout@v3
751
751
- name: git cfg
752
752
run: |
753
753
git config diff.renameLimit 999999
@@ -801,7 +801,7 @@ jobs:
801
801
image: perldocker/perl-tester:${{ matrix.perl-version }}
802
802
803
803
steps:
804
- - uses: actions/checkout@v2
804
+ - uses: actions/checkout@v3
805
805
- name: perl -V
806
806
run: perl -V
807
807
- name: Build and test dist modules
@@ -826,7 +826,7 @@ jobs:
826
826
fail-fast: false
827
827
828
828
steps:
829
- - uses: actions/checkout@v2
829
+ - uses: actions/checkout@v3
830
830
- name: perl -V
831
831
run: /usr/bin/perl -V
832
832
- name: Build and test dist modules
0 commit comments