Skip to content

Commit

Permalink
Fix release CI job (#633)
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-nef authored Jan 19, 2024
1 parent 830731e commit 0bd3094
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/build-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:

jobs:
unit:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/setup-go@v3
Expand All @@ -24,7 +24,7 @@ jobs:
- run: make test

rubocop:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: ruby/setup-ruby@v1
Expand All @@ -33,7 +33,7 @@ jobs:
- run: bundle exec rubocop

check-deps-tidy:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/setup-go@v3
Expand All @@ -46,7 +46,7 @@ jobs:
fi;
check-deps-updated:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/setup-go@v3
Expand All @@ -56,7 +56,7 @@ jobs:
- run: env GOPROXY=off go build -mod=readonly ./...

integration:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/setup-go@v3
Expand All @@ -73,7 +73,9 @@ jobs:
release:
if: contains('refs/heads/master', github.ref)
needs: integration
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/[email protected]
- uses: actions/setup-go@v3
Expand Down
2 changes: 1 addition & 1 deletion DRAUPNIR_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.3.2
5.3.3

0 comments on commit 0bd3094

Please sign in to comment.