Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ci.yml #89

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ jobs:
lint:
name: Lint
runs-on: ubuntu-20.04
container: pipelinecomponents/hadolint:0.10.1
container: pipelinecomponents/hadolint:0.26.4
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run hadolint
run: hadolint Dockerfile

shellcheck:
name: ShellCheck
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run ShellCheck
uses: reviewdog/action-shellcheck@v1.16.0
uses: reviewdog/action-shellcheck@v1.26.0
with:
reporter: github-pr-review
fail_on_error: true
Expand All @@ -39,12 +39,12 @@ jobs:
runs-on: ubuntu-20.04
needs: [ "lint", "shellcheck" ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build Docker image
run: docker build -t $TEST_IMAGE_NAME .

- name: Run Structure tests
uses: brpaz/structure-tests-action@v1.1.2
uses: brpaz/structure-tests-action@v1.2.0
with:
image: ${{ env.TEST_IMAGE_NAME }}

Expand All @@ -53,7 +53,7 @@ jobs:
runs-on: ubuntu-20.04
needs: build-test
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Run integration test 1
uses: ./
Expand Down Expand Up @@ -123,8 +123,8 @@ jobs:
runs-on: ubuntu-20.04
needs: integration-tests
steps:
- uses: actions/checkout@v2
- uses: cycjimmy/semantic-release-action@v3
- uses: actions/checkout@v4
- uses: cycjimmy/semantic-release-action@v4
with:
extra_plugins: |
@semantic-release/git
Expand Down