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
6 changes: 3 additions & 3 deletions .github/workflows/binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
echo "DEB_PKG_DIR=stellar-cli_${version}_${{ matrix.arch }}" >> $GITHUB_ENV

- name: Download Artifact
uses: actions/download-artifact@v8
uses: actions/download-artifact@v8.0.1
with:
name: ${{ env.ARTIFACT_NAME }}

Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
echo "SM_CLIENT_CERT_FILE=D:\\sm_client_cert.p12" >> "$GITHUB_ENV"

- name: Download Artifact
uses: actions/download-artifact@v8
uses: actions/download-artifact@v8.0.1
with:
name: ${{ env.ARTIFACT_NAME }}

Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:
if:
github.event_name == 'release' || startsWith(github.ref, 'refs/heads/release/') || startsWith(github.head_ref, 'release/')
id: stm-setup
uses: digicert/code-signing-software-trust-action@v1.1.0
uses: digicert/code-signing-software-trust-action@v1.2.1
with:
simple-signing-mode: true
keypair-alias: key_1412258126
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: cargo build --package stellar-cli --release

- name: Upload binary
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: stellar-${{ matrix.arch }}
path: target/release/stellar
Expand All @@ -58,7 +58,7 @@ jobs:
fetch-depth: 0

- name: Download binaries
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
pattern: stellar-*
merge-multiple: false
Expand All @@ -70,7 +70,7 @@ jobs:
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4

- name: Log in to Docker Hub
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand All @@ -94,7 +94,7 @@ jobs:
fi

- name: Build and push
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7
with:
context: .
platforms: linux/amd64,linux/arm64
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
continue-on-error: ${{ matrix.check == 'advisories' }}
steps:
- uses: actions/checkout@v6
- uses: EmbarkStudios/cargo-deny-action@3fd3802e88374d3fe9159b834c7714ec57d6c979
- uses: EmbarkStudios/cargo-deny-action@91bf2b620e09e18d6eb78b92e7861937469acedb
with:
command: check ${{ matrix.check }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: ruby/setup-ruby@dffb23f65a78bba8db45d387d5ea1bbd6be3ef18 # v1.293.0
- uses: ruby/setup-ruby@4c56a21280b36d862b5fc31348f463d60bdc55d5 # v1.301.0
Copy link

Copilot AI Apr 14, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description says ruby/setup-ruby is being bumped to v1.300.0, but this workflow pins it to v1.301.0 (by SHA). Please either update the PR description to match, or adjust the pinned ref/comment here so the documented bump target matches what's actually being used.

Copilot uses AI. Check for mistakes.
with:
ruby-version: ruby
- name: Run install tests
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-with-openzeppelin-contracts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- run: rustup update
- run: sudo apt update && sudo apt install -y libudev-dev libdbus-1-dev
- run: make install
- uses: actions/upload-artifact@v7
- uses: actions/upload-artifact@v7.0.1
with:
name: stellar-cli
path: ~/.cargo/bin/stellar
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
- uses: actions/checkout@v6
with:
repository: OpenZeppelin/stellar-contracts
- uses: actions/download-artifact@v8
- uses: actions/download-artifact@v8.0.1
with:
name: stellar-cli
path: stellar-cli
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
id: artifact-name
run: echo "name=wasm-$(echo ${{ matrix.dir }} | sed 's/\//-/g')${{ matrix.experimental_spec_shaking_v2 && '-spec-shaking-v2' || '' }}" | tee -a $GITHUB_OUTPUT
- name: Upload WASM artifacts
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v7.0.1
with:
name: ${{ steps.artifact-name.outputs.name }}
path: ${{ steps.find-wasm.outputs.wasm }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-with-soroban-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- run: rustup update
- run: sudo apt update && sudo apt install -y libudev-dev libdbus-1-dev
- run: make install
- uses: actions/upload-artifact@v7
- uses: actions/upload-artifact@v7.0.1
with:
name: stellar-cli
path: ~/.cargo/bin/stellar
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
with:
repository: stellar/soroban-examples
ref: main
- uses: actions/download-artifact@v8
- uses: actions/download-artifact@v8.0.1
with:
name: stellar-cli
path: stellar-cli
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
id: artifact-name
run: echo "name=wasm-$(echo ${{ matrix.dir }} | sed 's/\//-/g')${{ matrix.experimental_spec_shaking_v2 && '-spec-shaking-v2' || '' }}" | tee -a $GITHUB_OUTPUT
- name: Upload WASM artifacts
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v7.0.1
with:
name: ${{ steps.artifact-name.outputs.name }}
path: ${{ steps.find-wasm.outputs.wasm }}
Expand Down
Loading