Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:

jobs:
build:
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
strategy:
matrix:
go-arch: ["amd64", "arm64"] # drop 32 bit support for now (and maybe forever)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/changelog-reminder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permissions:
jobs:
remind:
name: Changelog Reminder
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
# Skip draft PRs and PRs starting with: revert, test, chore, ci, docs, style, build, refactor
if: "!github.event.pull_request.draft && !contains(github.event.pull_request.title, 'revert') && !contains(github.event.pull_request.title, 'test') && !contains(github.event.pull_request.title, 'chore') && !contains(github.event.pull_request.title, 'ci') && !contains(github.event.pull_request.title, 'docs') && !contains(github.event.pull_request.title, 'style') && !contains(github.event.pull_request.title, 'build') && !contains(github.event.pull_request.title, 'refactor')"
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clean-action-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
remove-old-artifacts:
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
timeout-minutes: 30

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ concurrency:
jobs:
analyze:
name: Analyze
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/consensuswarn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
main:
permissions:
pull-requests: write # For reading the PR and posting comment
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: orijtech/consensuswarn@main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-update-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:

jobs:
update-all:
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Generate Token
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependencies-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ permissions:

jobs:
dependency-review:
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
steps:
- name: "Checkout Repository"
uses: actions/checkout@v4
Expand Down
10 changes: 3 additions & 7 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
permissions:
contents: read
packages: write
sid-token: write
#sid-token: write

env:
# Use docker.io for Docker Hub if empty
Expand All @@ -32,7 +32,7 @@ env:

jobs:
build:
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -61,13 +61,9 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Setup Depot
uses: depot/setup-action@v1

- name: Publish to GitHub Packages
uses: depot/build-push-action@v1
uses: docker/build-push-action@v6
with:
project: gnm1jqptpw
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/issue_labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
triage:
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
steps:
- uses: github/issue-labeler@v3.4
if: join(github.event.issue.labels) == ''
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
add-to-project:
name: Add issue to project
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@v1.0.2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
permissions:
pull-requests: read # for amannn/action-semantic-pull-request to analyze PRs
statuses: write # for amannn/action-semantic-pull-request to mark status of analyzed PR
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5.5.3
id: lint_pr_title
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:
jobs:
golangci:
name: golangci-lint
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/md-link-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ on:
- "docs/**"
jobs:
markdown-link-check:
runs-on: depot-ubuntu-22.04-4
if: false # Disabled
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cd docs && sh ./pre.sh
Expand All @@ -16,7 +17,7 @@ jobs:
sims-notify-failure:
permissions:
contents: none
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
if: ${{ failure() }}
steps:
- name: Notify Slack on failure
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-go-mod-tidy-mocks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
jobs:
go-mod-tidy:
name: Check go mod tidy
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
Expand All @@ -33,7 +33,7 @@ jobs:

generate-mocks:
name: Check up to date mocks
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
permissions:
contents: read # for actions/labeler to determine modified files
pull-requests: write # for actions/labeler to add labels to PRs
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v4 # v5 is broken, ref https://github.com/actions/labeler/issues/712. Do not bump.
with:
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/proto-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ concurrency:

jobs:
build:
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -59,13 +59,9 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Setup Depot
uses: depot/setup-action@v1

- name: Publish to GHCR
uses: depot/build-push-action@v1
uses: docker/build-push-action@v6
with:
project: gnm1jqptpw
context: ./contrib/devtools
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/proto-registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

# jobs:
# root:
# runs-on: depot-ubuntu-22.04-4
# runs-on: ubuntu-latest
# name: "Push to buf.build/cosmos/cosmos-sdk"
# steps:
# - uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/proto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:

jobs:
lint:
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
Expand All @@ -21,7 +21,7 @@ jobs:
input: "proto"

break-check:
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: bufbuild/buf-setup-action@v1.50.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-confix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
goreleaser:
permissions:
contents: write # for goreleaser/goreleaser-action to create a GitHub release
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-cosmovisor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
goreleaser:
permissions:
contents: write # for goreleaser/goreleaser-action to create a GitHub release
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-simd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
goreleaser:
permissions:
contents: write # for goreleaser/goreleaser-action to create a GitHub release
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
release:
permissions:
contents: write # for goreleaser/goreleaser-action to create a GitHub release
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Go
Expand All @@ -34,7 +34,7 @@ jobs:
release-success:
needs: release
if: ${{ success() }}
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
steps:
- name: Notify Slack on success
uses: rtCamp/action-slack-notify@v2.3.3
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/sims-050.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:

jobs:
build:
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'skip-sims')"
steps:
- uses: actions/checkout@v4
Expand All @@ -31,7 +31,7 @@ jobs:
install-runsim:
permissions:
contents: none
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/setup-go@v5
Expand All @@ -46,7 +46,7 @@ jobs:
key: ${{ runner.os }}-go-runsim-binary

test-sim-import-export:
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
needs: [build, install-runsim]
timeout-minutes: 60
steps:
Expand All @@ -66,7 +66,7 @@ jobs:
make test-sim-import-export

test-sim-after-import:
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
needs: [build, install-runsim]
steps:
- uses: actions/checkout@v4
Expand All @@ -85,7 +85,7 @@ jobs:
make test-sim-after-import

test-sim-multi-seed-short:
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
needs: [build, install-runsim]
steps:
- uses: actions/checkout@v4
Expand All @@ -106,7 +106,7 @@ jobs:
sims-notify-success:
needs:
[test-sim-multi-seed-short, test-sim-after-import, test-sim-import-export]
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
if: ${{ success() }}
steps:
- uses: actions/checkout@v4
Expand All @@ -133,7 +133,7 @@ jobs:
contents: none
needs:
[test-sim-multi-seed-short, test-sim-after-import, test-sim-import-export]
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
if: ${{ failure() }}
steps:
- name: Notify Slack on failure
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/sims-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:

jobs:
test-sim-multi-seed-long:
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
Expand All @@ -30,7 +30,7 @@ jobs:
make test-sim-multi-seed-long

test-sim-import-export:
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
Expand All @@ -46,7 +46,7 @@ jobs:

sims-notify-success:
needs: [test-sim-multi-seed-long, test-sim-import-export]
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
if: ${{ success() }}
steps:
- name: Check out repository
Expand All @@ -73,7 +73,7 @@ jobs:
permissions:
contents: none
needs: [test-sim-multi-seed-long]
runs-on: depot-ubuntu-22.04-4
runs-on: ubuntu-latest
if: ${{ failure() }}
steps:
- name: Notify Slack on failure
Expand Down
Loading
Loading