From 2367bd5ca6f14db29a1181631d30248dfc930a30 Mon Sep 17 00:00:00 2001 From: Zakariyya Mughal Date: Fri, 6 Sep 2024 13:09:07 -0400 Subject: [PATCH 1/2] chore: Update actions to `v4` for transition to Node.js 20 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5ef1422..148037c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: min-perl-version: ${{ steps.build-dist.outputs.min-perl-version }} steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - id: build-dist uses: perlrdf/devops/github-actions/build-dist@main with: @@ -78,7 +78,7 @@ jobs: steps: - name: Get dist artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: dist From b498678688eee7750ae19a5b8ec07924ed184582 Mon Sep 17 00:00:00 2001 From: Zakariyya Mughal Date: Fri, 6 Sep 2024 14:56:58 -0400 Subject: [PATCH 2/2] chore: Change macos-11 to macos-latest See . --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 148037c..a8f578b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,8 +72,8 @@ jobs: - { perl-version: '5.34' , os: windows-latest , dist: msys2 , alien-install-type: 'system' } - { perl-version: '5.34' , os: windows-latest , dist: msys2 , alien-install-type: 'share' } # macOS | system, share - - { perl-version: '5.34' , os: macos-11 , alien-install-type: 'system' } - - { perl-version: '5.34' , os: macos-11 , alien-install-type: 'share' } + - { perl-version: '5.34' , os: macos-latest , alien-install-type: 'system' } + - { perl-version: '5.34' , os: macos-latest , alien-install-type: 'share' } name: Perl ${{ matrix.perl-version }} on ${{ matrix.os }} with install-type ${{ matrix.alien-install-type }}, dist ${{ matrix.dist }} steps: