Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/_atlas-migrations-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
goprivate: ${{ inputs.goprivate }}

- name: Setup Go
uses: actions/setup-go@v5
uses: actions/setup-go@v7
with:
go-version: ${{ inputs.go_version }}

Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
curl -sSf https://atlasgo.sh | sh -s -- --version ${{ inputs.atlas_version }}

- name: Cache Go modules
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/_checks-expo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ jobs:

- name: Cache pnpm store
if: inputs.cache_bucket != '' && steps.pm.outputs.pm_name == 'pnpm' && steps.pnpm-cache.outputs.STORE_PATH != '' && steps.cache-control.outputs.enabled != 'false'
uses: runs-on/cache@v4
uses: runs-on/cache@v5
env:
RUNS_ON_S3_BUCKET_CACHE: ${{ inputs.cache_bucket }}
RUNS_ON_S3_FORCE_PATH_STYLE: "true"
Expand All @@ -210,7 +210,7 @@ jobs:

- name: Cache Bun dependencies
if: inputs.cache_bucket != '' && steps.pm.outputs.pm_name == 'bun' && steps.cache-control.outputs.enabled != 'false'
uses: runs-on/cache@v4
uses: runs-on/cache@v5
env:
RUNS_ON_S3_BUCKET_CACHE: ${{ inputs.cache_bucket }}
RUNS_ON_S3_FORCE_PATH_STYLE: "true"
Expand Down Expand Up @@ -258,7 +258,7 @@ jobs:

- name: Upload coverage reports to Codecov
if: ${{ inputs.enable_tests && inputs.enable_coverage && inputs.upload_coverage }}
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v7
with:
token: ${{ secrets.codecov_token }}
flags: ${{ inputs.codecov_flags }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_checks-golang.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ jobs:
post-coverage-comment:
needs: checks
if: inputs.enable_coverage && inputs.post_pr_comment && (github.event_name == 'pull_request' || github.event_name == 'pull_request_target') && always() && needs.checks.outputs.coverage_status != ''
uses: zondax/_workflows/.github/workflows/_post-pr-comment-reusable.yml@v5
uses: zondax/_workflows/.github/workflows/_post-pr-comment-reusable.yml@v11
secrets: inherit
with:
issue_number: ${{ github.event.number }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/_checks-playwright.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ jobs:

- name: Cache Cargo registry
if: inputs.use_rust_cache && inputs.cache_bucket != '' && steps.cache-control.outputs.enabled != 'false'
uses: runs-on/cache@v4
uses: runs-on/cache@v5
env:
RUNS_ON_S3_BUCKET_CACHE: ${{ inputs.cache_bucket }}
RUNS_ON_S3_FORCE_PATH_STYLE: "true"
Expand All @@ -310,7 +310,7 @@ jobs:

- name: Cache Next.js build
if: inputs.enable_nextjs_cache && inputs.cache_bucket != '' && steps.cache-control.outputs.enabled != 'false'
uses: runs-on/cache@v4
uses: runs-on/cache@v5
env:
RUNS_ON_S3_BUCKET_CACHE: ${{ inputs.cache_bucket }}
RUNS_ON_S3_FORCE_PATH_STYLE: "true"
Expand Down Expand Up @@ -369,7 +369,7 @@ jobs:

- name: Cache pnpm store
if: inputs.cache_bucket != '' && steps.pm.outputs.pm_name == 'pnpm' && steps.pnpm-cache.outputs.STORE_PATH != '' && steps.cache-control.outputs.enabled != 'false'
uses: runs-on/cache@v4
uses: runs-on/cache@v5
env:
RUNS_ON_S3_BUCKET_CACHE: ${{ inputs.cache_bucket }}
RUNS_ON_S3_FORCE_PATH_STYLE: "true"
Expand All @@ -387,7 +387,7 @@ jobs:

- name: Cache Bun dependencies
if: inputs.cache_bucket != '' && steps.pm.outputs.pm_name == 'bun' && steps.cache-control.outputs.enabled != 'false'
uses: runs-on/cache@v4
uses: runs-on/cache@v5
env:
RUNS_ON_S3_BUCKET_CACHE: ${{ inputs.cache_bucket }}
RUNS_ON_S3_FORCE_PATH_STYLE: "true"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/_checks-rs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ jobs:

- name: Cache Cargo registry
if: inputs.cache_bucket != '' && steps.cache-control.outputs.enabled != 'false'
uses: runs-on/cache@v4
uses: runs-on/cache@v5
env:
RUNS_ON_S3_BUCKET_CACHE: ${{ inputs.cache_bucket }}
RUNS_ON_S3_FORCE_PATH_STYLE: "true"
Expand Down Expand Up @@ -617,15 +617,15 @@ jobs:

- name: Cache coverage baseline
if: ${{ github.event_name == 'push' && inputs.enable_coverage && (inputs.coverage_regression_tolerance > 0 || inputs.coverage_diff_threshold > 0) }}
uses: actions/cache/save@v4
uses: actions/cache/save@v6
with:
key: coverage-baseline-${{ github.ref_name }}-rs-${{ inputs.coverage_artifact_suffix }}-${{ github.sha }}
path: coverage-baseline/

- name: Restore coverage baseline
if: ${{ github.event_name == 'pull_request' && inputs.enable_coverage && (inputs.coverage_regression_tolerance > 0 || inputs.coverage_diff_threshold > 0) }}
id: baseline-cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v6
with:
key: coverage-baseline-${{ github.base_ref }}-rs-${{ inputs.coverage_artifact_suffix }}-no-exact-match
restore-keys: |
Expand Down Expand Up @@ -812,7 +812,7 @@ jobs:
post-coverage-comment:
needs: checks-rust
if: inputs.enable_coverage && inputs.post_pr_comment && (github.event_name == 'pull_request' || github.event_name == 'pull_request_target') && always() && needs.checks-rust.outputs.coverage_status != ''
uses: zondax/_workflows/.github/workflows/_post-pr-comment-reusable.yml@v5
uses: zondax/_workflows/.github/workflows/_post-pr-comment-reusable.yml@v11
secrets: inherit
with:
issue_number: ${{ github.event.number }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/_checks-ts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ jobs:

- name: Cache pnpm store
if: inputs.cache_pnpm && inputs.cache_bucket != '' && steps.pm.outputs.pm_name == 'pnpm' && steps.pnpm-cache.outputs.STORE_PATH != '' && steps.cache-control.outputs.enabled != 'false'
uses: runs-on/cache@v4
uses: runs-on/cache@v5
env:
RUNS_ON_S3_BUCKET_CACHE: ${{ inputs.cache_bucket }}
RUNS_ON_S3_FORCE_PATH_STYLE: "true"
Expand All @@ -306,7 +306,7 @@ jobs:

- name: Cache Bun dependencies
if: inputs.cache_bucket != '' && steps.pm.outputs.pm_name == 'bun' && steps.cache-control.outputs.enabled != 'false'
uses: runs-on/cache@v4
uses: runs-on/cache@v5
env:
RUNS_ON_S3_BUCKET_CACHE: ${{ inputs.cache_bucket }}
RUNS_ON_S3_FORCE_PATH_STYLE: "true"
Expand Down Expand Up @@ -390,15 +390,15 @@ jobs:

- name: Cache coverage baseline
if: ${{ github.event_name == 'push' && inputs.enable_tests && inputs.enable_coverage && (inputs.coverage_regression_tolerance > 0 || inputs.coverage_diff_threshold > 0) }}
uses: actions/cache/save@v4
uses: actions/cache/save@v6
with:
key: coverage-baseline-${{ github.ref_name }}-ts-${{ github.sha }}
path: coverage-baseline/

- name: Restore coverage baseline
if: ${{ github.event_name == 'pull_request' && inputs.enable_tests && inputs.enable_coverage && (inputs.coverage_regression_tolerance > 0 || inputs.coverage_diff_threshold > 0) }}
id: baseline-cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v6
with:
key: coverage-baseline-${{ github.base_ref }}-ts-no-exact-match
restore-keys: |
Expand Down Expand Up @@ -711,7 +711,7 @@ jobs:

- name: Upload coverage reports to Codecov
if: ${{ inputs.enable_tests && inputs.enable_coverage && inputs.upload_coverage }}
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v7
with:
token: ${{ secrets.codecov_token }}
flags: ${{ inputs.codecov_flags }}
Expand All @@ -725,7 +725,7 @@ jobs:
(github.event_name == 'pull_request' || github.event_name == 'pull_request_target') &&
always() &&
needs.checks-ts.outputs.coverage_lines != ''
uses: zondax/_workflows/.github/workflows/_post-pr-comment-reusable.yml@v5
uses: zondax/_workflows/.github/workflows/_post-pr-comment-reusable.yml@v11
secrets: inherit
with:
issue_number: ${{ github.event.number }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_cloud-run-build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Configure Docker to use gcloud (for Artifact Registry)
run: gcloud auth configure-docker ${{ vars.PULUMI_GAR_LOCATION }}-docker.pkg.dev
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4
with:
driver: docker-container
- name: Build Docker image
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_cloud-run-canary-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
project_id: ${{ vars.PULUMI_GCP_PROJECT_ID }}

- name: Install go
uses: actions/setup-go@v5
uses: actions/setup-go@v7
with:
go-version: 1.24

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_cloud-run-cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
setup_gcloud: true

- name: Install go
uses: actions/setup-go@v5
uses: actions/setup-go@v7
with:
go-version: 1.24

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_cloud-run-deploy-keep-revisions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
log_jwt_info: true

- name: Install go
uses: actions/setup-go@v5
uses: actions/setup-go@v7
with:
go-version: 1.24

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_cloud-run-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
log_jwt_info: true

- name: Install go
uses: actions/setup-go@v5
uses: actions/setup-go@v7
with:
go-version: 1.24

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_ledger_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: bear -- make -j BOLOS_SDK="$NANOSP_SDK"
- name: Setup python
if: ${{ !inputs.use_latest_builder }}
uses: actions/setup-python@v5
uses: actions/setup-python@v7
with:
python-version: "3.11"
- name: Lint and format 💅
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/_ledger_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
targets: thumbv6m-none-eabi
- name: Cache Rust dependencies
if: ${{ inputs.has-rust }}
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: |
${{ needs.setup.outputs.cargo_home }}
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
with:
submodules: recursive
- name: Cache/restore Cargo dependencies
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ./app/rust/.cargo
key: ${{ runner.os }}-cargo-${{ runner.arch }}-${{ hashFiles('./Cargo.lock') }}
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
with:
submodules: recursive
- name: Cache/restore Cargo dependencies
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ./app/rust/.cargo
key: ${{ runner.os }}-cargo-${{ runner.arch }}-${{ hashFiles('./Cargo.lock') }}
Expand Down Expand Up @@ -234,13 +234,13 @@ jobs:
with:
toolchain: ${{ inputs.rust-version }}
- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
node-version: ${{ inputs.node-version }}
- name: Enable corepack (pnpm version is pinned in zxlib's dockerized_build.mk)
run: corepack enable
- name: Install Bun
uses: oven-sh/setup-bun@v1
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Build and run zemu tests
Expand Down Expand Up @@ -281,7 +281,7 @@ jobs:
targets: thumbv6m-none-eabi
- name: Cache Rust dependencies
if: ${{ inputs.has-rust }}
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: |
${{ needs.setup.outputs.cargo_home }}
Expand Down Expand Up @@ -363,7 +363,7 @@ jobs:
targets: thumbv6m-none-eabi
- name: Cache Rust dependencies
if: ${{ inputs.has-rust }}
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: |
${{ needs.setup.outputs.cargo_home }}
Expand Down Expand Up @@ -445,7 +445,7 @@ jobs:
targets: thumbv6m-none-eabi
- name: Cache Rust dependencies
if: ${{ inputs.has-rust }}
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: |
${{ needs.setup.outputs.cargo_home }}
Expand Down Expand Up @@ -526,7 +526,7 @@ jobs:
targets: thumbv6m-none-eabi
- name: Cache Rust dependencies
if: ${{ inputs.has-rust }}
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: |
${{ needs.setup.outputs.cargo_home }}
Expand Down Expand Up @@ -607,7 +607,7 @@ jobs:
targets: thumbv6m-none-eabi
- name: Cache Rust dependencies
if: ${{ inputs.has-rust }}
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: |
${{ needs.setup.outputs.cargo_home }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_post-pr-comment-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
runs-on: zondax-runners
steps:
- name: Post or update PR comment
uses: peter-evans/create-or-update-comment@v4
uses: peter-evans/create-or-update-comment@v5
with:
issue-number: ${{ inputs.issue_number }}
comment-id: ${{ inputs.comment_identifier }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/_publish-docker-bake.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ jobs:
run: gcloud auth configure-docker ${{ vars.PULUMI_GAR_LOCATION }}-docker.pkg.dev

- name: Setup Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@v7
with:
node-version: "22"

Expand Down Expand Up @@ -467,7 +467,7 @@ jobs:

- name: Comment on PR
if: github.event_name == 'pull_request'
uses: peter-evans/create-or-update-comment@v4
uses: peter-evans/create-or-update-comment@v5
with:
issue-number: ${{ github.event.pull_request.number }}
body: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_publish-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
echo "GIT_BRANCH_GITHUB=$GIT_BRANCH_GITHUB"

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Install Cosign
uses: sigstore/cosign-installer@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_publish-npm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
fi

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v7
with:
node-version: ${{ inputs.node_version }}
registry-url: "https://registry.npmjs.org"
Expand Down
Loading