Skip to content

Commit 09bd8b9

Browse files
authored
fix: explicitly specify the versions for semantic-release (#42)
fixes #41
1 parent 51c5279 commit 09bd8b9

File tree

1 file changed

+15
-16
lines changed

1 file changed

+15
-16
lines changed

.github/workflows/terraform_and_release.yml

+15-16
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,18 @@ jobs:
3333
- run: terraform validate
3434

3535
release:
36-
if: github.event_name == 'push'
37-
needs: terraform
38-
runs-on: ubuntu-latest
39-
40-
steps:
41-
- uses: actions/checkout@v2
42-
- name: Semantic Release
43-
id: semantic
44-
uses: cycjimmy/semantic-release-action@v2
45-
env:
46-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
47-
with:
48-
semantic_version: 17
49-
extra_plugins: |
50-
@semantic-release/changelog
51-
@semantic-release/git
36+
if: github.event_name == 'push'
37+
needs: terraform
38+
runs-on: ubuntu-latest
39+
steps:
40+
- uses: actions/checkout@v2
41+
- name: Semantic Release
42+
id: semantic
43+
uses: cycjimmy/semantic-release-action@v2
44+
env:
45+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
46+
with:
47+
semantic_version: 19
48+
extra_plugins: |
49+
@semantic-release/changelog@6
50+
@semantic-release/git@10

0 commit comments

Comments
 (0)