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.0
with:
simple-signing-mode: true
keypair-alias: key_1412258126
Expand Down
4 changes: 2 additions & 2 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@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
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 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@3ff19f5e2baf30647122352b96108b1fbe250c64 # v1.299.0
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.0
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.0
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.0
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.0
with:
name: ${{ steps.artifact-name.outputs.name }}
path: ${{ steps.find-wasm.outputs.wasm }}
Expand Down
Loading