Skip to content

Commit

Permalink
Update GH workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
asardaes committed Feb 28, 2023
1 parent dc34807 commit 5f9f168
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-non-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
R_KEEP_PKG_SOURCE: yes

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: r-lib/actions/setup-pandoc@v2

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/check-sanitizers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ jobs:
name: Check hash of src files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- id: cache_hit
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
src
key: san-6-${{ hashFiles('src/**') }}
key: san-${{ hashFiles('src/**') }}
outputs:
run_check: ${{ steps.cache_hit.outputs.cache-hit }}
R-CMD-check:
Expand All @@ -37,9 +37,9 @@ jobs:
R_KEEP_PKG_SOURCE: yes

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: |
/usr/local/lib/R/site-library
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-standard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
R_KEEP_PKG_SOURCE: yes

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: r-lib/actions/setup-pandoc@v2

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/check-valgrind.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ jobs:
name: Check hash of src files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- id: cache_hit
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
src
key: valgrind-1-${{ hashFiles('src/**') }}
key: valgrind-${{ hashFiles('src/**') }}
outputs:
run_check: ${{ steps.cache_hit.outputs.cache-hit }}
R-CMD-check:
Expand All @@ -36,7 +36,7 @@ jobs:
R_KEEP_PKG_SOURCE: yes

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install valgrind
run: |
Expand Down

0 comments on commit 5f9f168

Please sign in to comment.