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

chore(deps): Bump celestiaorg/.github from 0.2.8 to 0.3.1 #3124

Merged
merged 10 commits into from
May 15, 2024
Merged
6 changes: 3 additions & 3 deletions .github/workflows/ci_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: celestiaorg/.github/.github/actions/yamllint@v0.2.8
- uses: celestiaorg/.github/.github/actions/yamllint@v0.3.2

markdown-lint:
name: Markdown Lint
Expand All @@ -85,7 +85,7 @@ jobs:
# If this was a workflow dispatch event, we need to generate and push a tag
# for goreleaser to grab
version_bump:
needs: [hadolint, yamllint, markdown-lint, go-ci]
needs: [hadolint, yamllint, markdown-lint, go-ci, setup]
runs-on: ubuntu-latest
permissions: "write-all"
steps:
Expand All @@ -106,7 +106,7 @@ jobs:

# Generate the release with goreleaser to include pre-built binaries
goreleaser:
needs: version_bump
needs: [version_bump, setup]
runs-on: ubuntu-latest
if: |
github.event_name == 'workflow_dispatch' ||
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/go-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_call:
inputs:
go-version:
description: 'Go version'
description: "Go version"
required: true
type: string

Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
run: git diff --exit-code

test_coverage:
needs: [lint, go_mod_tidy_check]
needs: [lint, go_mod_tidy_check, setup]
name: Unit Tests Coverage
strategy:
fail-fast: false
Expand Down
Loading