Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
version: 2
updates:
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'monthly'
18 changes: 7 additions & 11 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,12 @@ on:
pull_request:
branches:
- "*"
schedule:
- cron: "15 4 * * 0" # Every Sunday morning
workflow_dispatch:

jobs:
build:
name: Build distribution
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
container:
image: perldocker/perl-tester:5.34
steps:
Expand All @@ -24,18 +22,18 @@ jobs:
run: >
cpan-install-build-deps;
build-dist
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: build_dir
path: build_dir
coverage-job:
needs: build
runs-on: ubuntu-20.04
runs-on: ubuntu-2.04
container:
image: perldocker/perl-tester:5.34
steps:
- uses: actions/checkout@v2 # codecov wants to be inside a Git repository
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: build_dir
path: .
Expand Down Expand Up @@ -70,7 +68,7 @@ jobs:
AUTHOR_TESTING: 0
RELEASE_TESTING: 0
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: build_dir
path: .
Expand All @@ -91,8 +89,6 @@ jobs:
matrix:
os: ["macos-latest"]
perl-version:
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
Expand All @@ -111,7 +107,7 @@ jobs:
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl-version }}
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: build_dir
path: .
Expand Down Expand Up @@ -153,7 +149,7 @@ jobs:
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: ${{ matrix.perl-version }}
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: build_dir
path: .
Expand Down
Loading