Skip to content

Commit 8826836

Browse files
authored
chore: update release action dependencies (#473)
* chore: update release action dependencies * chore: set semantic release version
1 parent 2c30f3a commit 8826836

2 files changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
PYTHONDONTWRITEBYTECODE: 1
2424
steps:
2525
- name: Setup Python
26-
uses: "actions/setup-python@v1"
26+
uses: "actions/setup-python@v3"
2727
with:
2828
python-version: "3.9"
2929
- name: Checkout
30-
uses: actions/checkout@v2
30+
uses: actions/checkout@v3
3131
with:
3232
token: ${{ secrets.SYNCED_GITHUB_TOKEN_REPO }}
3333
- name: Install dependencies
@@ -37,8 +37,9 @@ jobs:
3737
- name: Cleanup old dist
3838
run: rm -rf googlemaps-* dist/
3939
- name: Semantic Release
40-
uses: cycjimmy/semantic-release-action@v2
40+
uses: cycjimmy/semantic-release-action@v3
4141
with:
42+
semantic_version: 19
4243
extra_plugins: |
4344
"@semantic-release/commit-analyzer"
4445
"@semantic-release/release-notes-generator"

.github/workflows/test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2020 Google LLC
1+
# Copyright 2023 Google LLC
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -51,4 +51,6 @@ jobs:
5151
needs: [matrix]
5252
runs-on: ubuntu-latest
5353
steps:
54-
- run: echo "Test matrix finished"
54+
- run: |
55+
echo "Test matrix finished";
56+
exit 0;

0 commit comments

Comments
 (0)