Skip to content

Commit

Permalink
Fix workflows, compat fix
Browse files Browse the repository at this point in the history
  • Loading branch information
richardreeve committed Jul 21, 2024
1 parent 9eb79ce commit bba4b95
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,14 @@ on:
pull_request:
workflow_dispatch:

concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created
actions: write
contents: read

jobs:
metadata:
name: RSMD - ${{ github.event_name }}
timeout-minutes: 60
permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created
actions: write
contents: read
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@ on:
- 'v*'
pull_request:

permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created
actions: write
contents: read

jobs:
Diversity-tests:
name: Julia ${{ matrix.julia-version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
timeout-minutes: 60
permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created
actions: write
contents: read
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Logging = "1"
Missings = "0.4, 1.0"
Phylo = "0.4, 0.5"
Pkg = "1.8"
RCall = "0.13"
RCall = "0.13, 0.14"
RecipesBase = "0.6, 0.7, 0.8, 1"
Requires = "^1"
ResearchSoftwareMetadata = "0.1.1"
Expand Down

0 comments on commit bba4b95

Please sign in to comment.