Skip to content

Commit 785a5c0

Browse files
authored
bump Interpolations (#109)
* bump `Interpolations` * use `at-latest` | dont run `TagBot` on cron
1 parent 6e9307d commit 785a5c0

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

.github/workflows/CI.yml

Lines changed: 7 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -23,25 +23,16 @@ jobs:
2323
arch:
2424
- x64
2525
steps:
26-
- uses: actions/checkout@v2
27-
- uses: julia-actions/setup-julia@v1
26+
- uses: actions/checkout@v3
27+
- uses: julia-actions/setup-julia@latest
2828
with:
2929
version: ${{ matrix.version }}
3030
arch: ${{ matrix.arch }}
31-
- uses: actions/cache@v1
32-
env:
33-
cache-name: cache-artifacts
34-
with:
35-
path: ~/.julia/artifacts
36-
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
37-
restore-keys: |
38-
${{ runner.os }}-test-${{ env.cache-name }}-
39-
${{ runner.os }}-test-
40-
${{ runner.os }}-
41-
- uses: julia-actions/julia-buildpkg@v1
42-
- uses: julia-actions/julia-runtest@v1
43-
- uses: julia-actions/julia-processcoverage@v1
44-
- uses: codecov/codecov-action@v1
31+
- uses: julia-actions/cache@v1
32+
- uses: julia-actions/julia-buildpkg@latest
33+
- uses: julia-actions/julia-runtest@latest
34+
- uses: julia-actions/julia-processcoverage@latest
35+
- uses: codecov/codecov-action@v3
4536
with:
4637
file: lcov.info
4738
# docs:

.github/workflows/CompatHelper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
run: which julia
1616
continue-on-error: true
1717
- name: Install Julia, but only if it is not already available in the PATH
18-
uses: julia-actions/setup-julia@v1
18+
uses: julia-actions/setup-julia@latest
1919
with:
2020
version: '1'
2121
# arch: ${{ runner.arch }}

.github/workflows/TagBot.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
11
name: TagBot
22
on:
3-
schedule:
4-
- cron: 0 * * * *
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
7+
inputs:
8+
lookback:
9+
default: 3
10+
permissions:
11+
contents: write
512
jobs:
613
TagBot:
14+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
715
runs-on: ubuntu-latest
816
steps:
917
- uses: JuliaRegistries/TagBot@v1
1018
with:
1119
token: ${{ secrets.GITHUB_TOKEN }}
20+
ssh: ${{ secrets.DOCUMENTER_KEY }}

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "KernelDensity"
22
uuid = "5ab0869b-81aa-558d-bb23-cbf5423bbe9b"
33
authors = ["Simon Byrne and various contributors"]
4-
version = "0.6.4"
4+
version = "0.6.5"
55

66
[deps]
77
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
@@ -14,7 +14,7 @@ StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
1414
Distributions = "0.23, 0.24, 0.25"
1515
DocStringExtensions = "0.8, 0.9"
1616
FFTW = "1"
17-
Interpolations = "0.9, 0.10, 0.11, 0.12, 0.13"
17+
Interpolations = "0.9, 0.10, 0.11, 0.12, 0.13, 0.14"
1818
StatsBase = "0.33"
1919
julia = "1"
2020

0 commit comments

Comments
 (0)