From e6edce72dc3ac2ff35cdf2364efd487144afd426 Mon Sep 17 00:00:00 2001 From: Chris Swan <478926+cpswan@users.noreply.github.com> Date: Fri, 18 Nov 2022 10:39:45 +0000 Subject: [PATCH] fix: convert CRLF to LF --- .github/workflows/test.yml | 28 ++++++++++++++-------------- README.md | 6 +++++- action.yml | 18 +++++++++--------- 3 files changed, 28 insertions(+), 24 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2691ec0..27804db 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,15 +1,15 @@ -name: Certinfo - -on: - workflow_dispatch: - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - uses: atsign-company/certinfo-action@v1 - - - name: Get certinfo for root server +name: Certinfo + +on: + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - uses: atsign-company/certinfo-action@v1 + + - name: Get certinfo for root server run: certinfo root.atsign.org:64 \ No newline at end of file diff --git a/README.md b/README.md index cb201fb..67f8c73 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: atsign-company/certinfo-action@v1 - name: Get certinfo for root server @@ -39,6 +39,10 @@ jobs: # Version History +## v1.0.1 +* Converted action.yml and test.yml from CRLF to LF +* Bumped checkout to v3 in example + ## v1.0 * Promoted to 1.0 diff --git a/action.yml b/action.yml index 5e66b5b..3c9d926 100644 --- a/action.yml +++ b/action.yml @@ -1,10 +1,10 @@ -name: "Install Certinfo" -description: "Copy Certinfo binary and add it to the PATH" -branding: - icon: shield - color: blue -runs: - using: "composite" - steps: - - run: $GITHUB_ACTION_PATH/setup.sh +name: "Install Certinfo" +description: "Copy Certinfo binary and add it to the PATH" +branding: + icon: shield + color: blue +runs: + using: "composite" + steps: + - run: $GITHUB_ACTION_PATH/setup.sh shell: bash \ No newline at end of file