Implement "check-latest" flag to check if pre-cached version is latest one (#165)

This commit is contained in:
Maxim Lobanov
2020-06-29 21:56:37 +03:00
committed by GitHub
parent 0e2f9cde8b
commit 1ae8f4b1fd
8 changed files with 327 additions and 55 deletions

View File

@ -41,6 +41,20 @@ steps:
- run: npm test
```
Check latest version:
> In basic example, without `check-latest` flag, the action tries to resolve version from local cache firstly and download only if it is not found. Local cache on image is updated with a couple of weeks latency.
`check-latest` flag forces the action to check if the cached version is the latest one. It reduces latency significantly but it is much more likely to incur version downloading.
```yaml
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '12'
check-latest: true
- run: npm install
- run: npm test
```
Matrix Testing:
```yaml
jobs: