Skip to content

Commit 55371b4

Browse files
authored
Merge pull request #118 from ubilabs/ci/update-workflows
CI/update workflows
2 parents 12eed75 + 7633cd8 commit 55371b4

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- name: Checkout repository from GitHub
31-
uses: actions/checkout@v2.3.1
31+
uses: actions/checkout@v3
3232
- name: Setup npm
33-
uses: actions/setup-node@v2
33+
uses: actions/setup-node@v3
3434
with:
3535
node-version: '16'
3636
registry-url: 'https://registry.npmjs.org'
3737
# npm cache folder is in ~/, not within the working directory
3838
- name: Cache npm directory
39-
uses: actions/cache@v2
39+
uses: actions/cache@v3
4040
with:
4141
path: ~/.npm
4242
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99
timeout-minutes: 8
1010
steps:
1111
- name: Checkout repository from GitHub
12-
uses: actions/checkout@v2.3.1
12+
uses: actions/checkout@v3
1313
- name: Setup npm
14-
uses: actions/setup-node@v2
14+
uses: actions/setup-node@v3
1515
with:
1616
node-version: '16'
1717
# npm cache folder is in ~/, not within the working directory
1818
- name: Cache npm directory
19-
uses: actions/cache@v2
19+
uses: actions/cache@v3
2020
with:
2121
path: ~/.npm
2222
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

library/docs/useAutocomplete.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ Returns an [`Autocomplete Places Widget`](https://developers.google.com/maps/doc
5858

5959
```TypeScript
6060
google.maps.places.Autocomplete
61-
```
61+
```

library/docs/useAutocompleteService.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ Returns an [`Autocomplete Service`](https://developers.google.com/maps/documenta
3737

3838
```TypeScript
3939
google.maps.places.AutocompleteService
40-
```
40+
```

0 commit comments

Comments
 (0)