Skip to content

Commit e1bbcb3

Browse files
committed
Updated GitHub workflows from https://github.com/briandfoy/github_workflows
88606559a24076752150e97aa1373261ff04b645 * linux.yml upgraded: 20260126.001 -> 20260831.001 * macos.yml upgraded: 20260126.001 -> 20260831.001
1 parent f3b21dd commit e1bbcb3

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/linux.yml

Lines changed: 4 additions & 4 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 20260126.001
2+
# version 20260831.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
@@ -76,7 +76,7 @@ on:
7676
pull_request:
7777
# weekly build on the master branch just to see what CPAN is doing
7878
schedule:
79-
- cron: "25 16 * * 2"
79+
- cron: "17 21 * * 6"
8080
jobs:
8181
perl:
8282
environment: automated_testing
@@ -112,7 +112,7 @@ jobs:
112112
- name: Restore Perl modules
113113
id: perl-modules-cache-restore
114114
continue-on-error: true
115-
uses: actions/cache/restore@v4
115+
uses: actions/cache/restore@v6
116116
with:
117117
key: ${{ runner.os }}-${{ matrix.perl-version }}-modules
118118
path: |
@@ -200,7 +200,7 @@ jobs:
200200
- name: Save Perl modules
201201
continue-on-error: true
202202
id: perl-modules-cache-save
203-
uses: actions/cache/save@v4
203+
uses: actions/cache/save@v6
204204
if: always()
205205
with:
206206
key: ${{ steps.perl-modules-cache-restore.outputs.cache-primary-key }}

.github/workflows/macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# brian's standard GitHub Actions macOS config for Perl 5 modules
2-
# version 20260126.001
2+
# version 20260831.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
@@ -95,7 +95,7 @@ jobs:
9595
- name: Load cache
9696
id: perl-modules-cache-restore
9797
continue-on-error: true
98-
uses: actions/cache/restore@v4
98+
uses: actions/cache/restore@v6
9999
with:
100100
key: ${{ runner.os }}-perl-modules
101101
path: |
@@ -177,7 +177,7 @@ jobs:
177177
- name: Save cache
178178
id: perl-modules-cache-save
179179
continue-on-error: true
180-
uses: actions/cache/save@v4
180+
uses: actions/cache/save@v6
181181
if: always()
182182
with:
183183
key: ${{ steps.perl-modules-cache-restore.outputs.cache-primary-key }}

0 commit comments

Comments
 (0)