Skip to content

Commit

Permalink
added 'sudo apt-get update' in after-validate-submission.yaml to avoi…
Browse files Browse the repository at this point in the history
…d mirror+file fetching(not found) in GHA workflow
  • Loading branch information
kjsato committed Mar 29, 2024
1 parent 7bf43d7 commit f9accad
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/after-validate-submission.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
install-r: false
use-public-rspm: true
- name: Install system dependencies
run: sudo apt-get install -y libcurl4-openssl-dev
run:|
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev
- name: Cache R packages
uses: actions/cache@v2
with:
Expand Down

0 comments on commit f9accad

Please sign in to comment.