Skip to content

Commit 2758a09

Browse files
author
Julia Package Butler
committed
Fix issues identified by Julia Package Butler
1 parent 2f503f1 commit 2758a09

5 files changed

+15
-7
lines changed

.github/workflows/jlpkgbutler-butler-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: "Run Package Butler"
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818
- uses: davidanthoff/julia-pkgbutler@releases/v1
1919
with:
2020
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/jlpkgbutler-ci-master-workflow.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77
- master
88
workflow_dispatch:
99

10+
concurrency:
11+
group: ${{ github.head_ref || github.ref_name || github.run_id }}
12+
cancel-in-progress: true
13+
1014
jobs:
1115
test:
1216
runs-on: ${{ matrix.os }}
@@ -20,7 +24,7 @@ jobs:
2024
julia-arch: x86
2125

2226
steps:
23-
- uses: actions/checkout@v2
27+
- uses: actions/checkout@v3
2428
- uses: julia-actions/setup-julia@v1
2529
with:
2630
version: ${{ matrix.julia-version }}
@@ -32,7 +36,7 @@ jobs:
3236
env:
3337
PYTHON: ""
3438
- uses: julia-actions/julia-processcoverage@v1
35-
- uses: codecov/codecov-action@v2
39+
- uses: codecov/codecov-action@v3
3640
with:
3741
files: ./lcov.info
3842
flags: unittests

.github/workflows/jlpkgbutler-ci-pr-workflow.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
pull_request:
55
types: [opened, synchronize, reopened]
66

7+
concurrency:
8+
group: ${{ github.head_ref || github.ref_name || github.run_id }}
9+
cancel-in-progress: true
10+
711
jobs:
812
test:
913
runs-on: ${{ matrix.os }}
@@ -17,7 +21,7 @@ jobs:
1721
julia-arch: x86
1822

1923
steps:
20-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v3
2125
- uses: julia-actions/setup-julia@v1
2226
with:
2327
version: ${{ matrix.julia-version }}
@@ -29,7 +33,7 @@ jobs:
2933
env:
3034
PYTHON: ""
3135
- uses: julia-actions/julia-processcoverage@v1
32-
- uses: codecov/codecov-action@v2
36+
- uses: codecov/codecov-action@v3
3337
with:
3438
files: ./lcov.info
3539
flags: unittests

.github/workflows/jlpkgbutler-codeformat-pr-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
format:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- uses: julia-actions/julia-codeformat@releases/v1
1616
- name: Create Pull Request
1717
uses: peter-evans/create-pull-request@v3

.github/workflows/jlpkgbutler-docdeploy-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
docdeploy:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
- uses: julia-actions/julia-buildpkg@v1
1818
env:
1919
PYTHON: ""

0 commit comments

Comments
 (0)