Skip to content

Commit

Permalink
actually update templates
Browse files Browse the repository at this point in the history
  • Loading branch information
pat-s committed Nov 24, 2022
1 parent e54b5a9 commit c34f9d0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion inst/templates/ghactions-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
- name: "[Cache] Prepare daily timestamp for cache"
if: runner.os != 'Windows'
id: date
run: echo "::set-output name=date::$(date '+%d-%m')"
run: echo "date=$(date '+%d-%m')" >> $GITHUB_OUTPUT

- name: "[Cache] Cache R packages"
if: runner.os != 'Windows'
Expand Down
2 changes: 1 addition & 1 deletion inst/testdata/ghactions-check-update-fail.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
- name: "[Cache] Prepare daily timestamp for cache"
if: runner.os != 'Windows'
id: date
run: echo "::set-output name=date::$(date '+%d-%m')"
run: echo "date=$(date '+%d-%m')" >> $GITHUB_OUTPUT

- name: "[Cache] Prepare weekly timestamp for cache"
if: runner.os != 'Windows'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
- name: "[Cache] Prepare daily timestamp for cache"
if: runner.os != 'Windows'
id: date
run: echo "::set-output name=date::$(date '+%d-%m')"
run: echo "date=$(date '+%d-%m')" >> $GITHUB_OUTPUT

- name: "[Cache] Cache R packages"
if: runner.os != 'Windows'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
- name: "[Cache] Prepare daily timestamp for cache"
if: runner.os != 'Windows'
id: date
run: echo "::set-output name=date::$(date '+%d-%m')"
run: echo "date=$(date '+%d-%m')" >> $GITHUB_OUTPUT

- name: "[Cache] Cache R packages"
if: runner.os != 'Windows'
Expand Down

0 comments on commit c34f9d0

Please sign in to comment.