Skip to content

Commit 8356b1e

Browse files
chore: Synced local '.github/' with remote 'sync-files/js/.github/'
1 parent 18e7a98 commit 8356b1e

File tree

5 files changed

+14
-17
lines changed

5 files changed

+14
-17
lines changed

.github/workflows/codeql.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353

5454
steps:
5555
- name: Checkout repository
56-
uses: actions/checkout@v3
56+
uses: actions/checkout@v2
5757

5858
# Initializes the CodeQL tools for scanning.
5959
- name: Initialize CodeQL

.github/workflows/docs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
test:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v3
22-
- uses: actions/cache@v3
21+
- uses: actions/checkout@v2
22+
- uses: actions/cache@v2
2323
with:
2424
path: ~/.npm
2525
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

.github/workflows/package.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
package:
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v2
2424
- run: npm i
2525
- uses: jpoehnelt/verify-npm-files-action@main
2626
with:

.github/workflows/release.yml

+7-10
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,19 @@ on:
1717
push:
1818
branches:
1919
- main
20-
- beta
2120
concurrency: release
2221
jobs:
2322
build:
2423
runs-on: ubuntu-latest
2524
steps:
26-
- uses: actions/setup-node@v3
25+
- uses: actions/setup-node@v2
2726
with:
28-
node-version: '16'
27+
node-version: '14'
2928
- name: Checkout
3029
uses: actions/checkout@v3
3130
with:
3231
token: ${{ secrets.SYNCED_GITHUB_TOKEN_REPO }}
33-
- uses: actions/cache@v3
32+
- uses: actions/cache@v2
3433
with:
3534
path: ~/.npm
3635
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -44,17 +43,15 @@ jobs:
4443
- name: Release
4544
uses: cycjimmy/semantic-release-action@v3
4645
with:
47-
semantic_version: 19
4846
extra_plugins: |
49-
@semantic-release/commit-analyzer@^9
47+
@semantic-release/commit-analyzer
5048
semantic-release-interval
51-
@semantic-release/release-notes-generator@^10
49+
@semantic-release/release-notes-generator
5250
@semantic-release/git
53-
@semantic-release/github@^8
54-
@semantic-release/npm@^9
51+
@semantic-release/github
52+
@semantic-release/npm
5553
@googlemaps/semantic-release-config
5654
semantic-release-npm-deprecate
5755
env:
5856
GH_TOKEN: ${{ secrets.SYNCED_GITHUB_TOKEN_REPO }}
5957
NPM_TOKEN: ${{ secrets.NPM_WOMBAT_TOKEN }}
60-
RUNNER_DEBUG: 1

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
# limitations under the License.
1414

1515
name: Test
16-
on: [push, pull_request]
16+
on: [push, pull_request, workflow_call]
1717
jobs:
1818
test:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v3
22-
- uses: actions/cache@v3
21+
- uses: actions/checkout@v2
22+
- uses: actions/cache@v2
2323
with:
2424
path: ~/.npm
2525
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

0 commit comments

Comments
 (0)