Skip to content

Commit

Permalink
Merge branch 'main' into staking-validator-guide
Browse files Browse the repository at this point in the history
  • Loading branch information
LordGhostX authored Nov 19, 2024
2 parents 96e57a7 + e29c217 commit 8168db2
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/close-stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: 'Close stale issues and PRs'
on:
schedule:
- cron: '0 0 * * *'

permissions:
issues: write
pull-requests: write

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message: 'This issue is stale because it has been open 35 days with no activity. Remove stale label or comment or this will be closed in 14 days.'
stale-pr-message: 'This pull request is stale because it has been open 35 days with no activity. Remove stale label or comment or this will be closed in 14 days.'
days-before-stale: 60
days-before-close: 14
exempt-all-milestones: true
exempt-issue-labels: no-stale
exempt-pr-labels: no-stale
delete-branch: true
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: Build golang dependencies and binaries
FROM ubuntu:24.10 AS build
FROM ubuntu:25.04 AS build

ARG VM_DEBUG

Expand All @@ -20,7 +20,7 @@ RUN bash -c 'source ~/.cargo/env && VM_DEBUG=${VM_DEBUG} make juno'
RUN upx-ucl /app/build/juno

# Stage 2: Build Docker image
FROM ubuntu:24.10 AS runtime
FROM ubuntu:25.04 AS runtime

RUN apt-get update && apt-get install -y ca-certificates curl gawk grep libjemalloc-dev libjemalloc2

Expand Down

0 comments on commit 8168db2

Please sign in to comment.