Skip to content

Commit

Permalink
Merge pull request #77 from devops-infra/bugfix/set-e
Browse files Browse the repository at this point in the history
Remove `set -e`
  • Loading branch information
ChristophShyper authored Jan 31, 2023
2 parents 65e8120 + b02fbc6 commit 581af05
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
phony: help

# Release tag for the action
VERSION := v0.3.4
VERSION := v0.3.5

# GitHub Actions bogus variables
GITHUB_REF ?= refs/heads/null
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Features:

```yaml
- name: Fail on malformatted files
uses: devops-infra/[email protected].4
uses: devops-infra/[email protected].5
with:
list: false
write: true
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Fail on malformatted files
uses: devops-infra/[email protected].4
uses: devops-infra/[email protected].5
with:
check: true
```
Expand All @@ -86,7 +86,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Format HCL files
uses: devops-infra/[email protected].4
uses: devops-infra/[email protected].5
- name: Commit changes to repo
uses: devops-infra/action-commit-push@master
with:
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ outputs:
description: List of formatted files
runs:
using: docker
image: docker://devopsinfra/action-format-hcl:v0.3.4
image: docker://devopsinfra/action-format-hcl:v0.3.5
branding:
color: purple
icon: upload-cloud
2 changes: 0 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
#!/usr/bin/env bash

set -e

# Return code
RET_CODE=0

Expand Down

0 comments on commit 581af05

Please sign in to comment.