Skip to content

Commit

Permalink
Implementing
Browse files Browse the repository at this point in the history
  • Loading branch information
egonbraun committed Dec 10, 2023
1 parent 41e8a3a commit f393f41
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
4 changes: 4 additions & 0 deletions .yamllint.conf
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
extends: default

line-length:
max: 120
level: warning
10 changes: 4 additions & 6 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more

Check failure on line 13 in action.yml

View workflow job for this annotation

GitHub Actions / lint

13:81 [line-length] line too long (118 > 80 characters)
# details.
#
# You should have received a copy of the GNU Affero General Public License along with action-prepare. If not, see
# You should have received a copy of the GNU Affero General Public License along with action-prepare. If not, see

Check failure on line 16 in action.yml

View workflow job for this annotation

GitHub Actions / lint

16:81 [line-length] line too long (113 > 80 characters)
# <https://www.gnu.org/licenses/>.
#

Expand Down Expand Up @@ -51,7 +51,7 @@ branding:
# ----------------------------------------------------------------------------------------------------------------------

inputs:

step:
description: "Kind of execution we are preparing for"
required: true
Expand All @@ -65,8 +65,6 @@ inputs:
required: false
default: "2.12.0"



# ----------------------------------------------------------------------------------------------------------------------
# OUTPUTS
# ----------------------------------------------------------------------------------------------------------------------
Expand All @@ -81,7 +79,7 @@ runs:
using: "composite"
steps:
- name: check runner os
if: ${{ runner.os != "Linux" }}
if: ${{ runner.os != 'Linux' }}
shell: bash
run: |
echo "::error title=unsupported os"
Expand All @@ -103,5 +101,5 @@ runs:
curl -fsSL \
-o /usr/local/bin/hadolint \
"https://github.com/hadolint/hadolint/releases/download/v${{ inputs.version_hadolint }}/hadolint-Linux-${ARCH}"

Check failure on line 103 in action.yml

View workflow job for this annotation

GitHub Actions / lint

103:81 [line-length] line too long (121 > 80 characters)
chmod +x /usr/local/bin/hadolint

0 comments on commit f393f41

Please sign in to comment.