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
10 changes: 5 additions & 5 deletions .github/workflows/binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
target: aarch64-unknown-linux-gnu
runs-on: ${{ matrix.sys.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: ./.github/actions/build-binary
with:
target: ${{ matrix.sys.target }}
Expand All @@ -59,7 +59,7 @@ jobs:
target: x86_64-apple-darwin
runs-on: ${{ matrix.sys.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: ./.github/actions/build-binary
with:
target: ${{ matrix.sys.target }}
Expand All @@ -82,7 +82,7 @@ jobs:
ext: .exe
runs-on: ${{ matrix.sys.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: ./.github/actions/build-binary
with:
target: ${{ matrix.sys.target }}
Expand All @@ -104,7 +104,7 @@ jobs:
os: ubuntu-22.04-arm
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup vars
run: |
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
needs: [build, build-macos, build-windows]
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Setup vars
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bindings-ts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- uses: actions/setup-node@v6
with:
node-version: "20.x"
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: stellar/actions/rust-cache@main
- run: rustup update
- name: install optional dependencies (Linux only)
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,14 +40,14 @@ jobs:
tags: ${{ steps.resolve.outputs.tags }}
steps:
- name: Check out source ref
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.ref || github.ref }}
path: source
fetch-depth: 0

- name: Check out Dockerfile ref
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.dockerfile_ref || 'main' }}
path: dockerfile
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
platform="${{ matrix.platform }}"
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV

- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ needs.prepare.outputs.dockerfile_sha }}

Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ needs.prepare.outputs.dockerfile_sha }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ledger-emulator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
with:
tag: nightly
protocol_version: 27
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: stellar/actions/rust-cache@main

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rpc-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
with:
tag: nightly
protocol_version: 27
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: stellar/actions/rust-cache@main
- run: rustup update
- run:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ jobs:
check: [advisories, bans, licenses, sources]
continue-on-error: ${{ matrix.check == 'advisories' }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: EmbarkStudios/cargo-deny-action@bb137d7af7e4fb67e5f82a49c4fce4fad40782fe
with:
command: check ${{ matrix.check }}

check:
runs-on: ubuntu-latest-8-cores
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: stellar/actions/rust-cache@main
- run: sudo apt update && sudo apt install -y libudev-dev libdbus-1-dev
- run: rustup update
Expand All @@ -68,7 +68,7 @@ jobs:
target: aarch64-unknown-linux-gnu
runs-on: ${{ matrix.sys.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: ./.github/actions/build-and-test
with:
target: ${{ matrix.sys.target }}
Expand All @@ -87,7 +87,7 @@ jobs:
target: aarch64-apple-darwin
runs-on: ${{ matrix.sys.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: ./.github/actions/build-and-test
with:
target: ${{ matrix.sys.target }}
Expand All @@ -104,7 +104,7 @@ jobs:
target: x86_64-pc-windows-msvc
runs-on: ${{ matrix.sys.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: ./.github/actions/build-and-test
with:
target: ${{ matrix.sys.target }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
test-install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: ruby/setup-ruby@afeafc3d1ab54a631816aba4c914a0081c12ff2f # v1.310.0
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: ruby/setup-ruby@9eb537ca036ebaed86729dcb9309076e4c5c3b74 # v1.314.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 @@ -19,7 +19,7 @@ jobs:
build-cli:
runs-on: ubuntu-latest-8-cores
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: stellar/actions/rust-cache@main
- run: rustup update
- run: sudo apt update && sudo apt install -y libudev-dev libdbus-1-dev
Expand All @@ -34,7 +34,7 @@ jobs:
outputs:
dirs: ${{ steps.dirs.outputs.dirs }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
repository: OpenZeppelin/stellar-contracts
- id: dirs
Expand All @@ -55,7 +55,7 @@ jobs:
experimental_spec_shaking_v2: [true, false]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
repository: OpenZeppelin/stellar-contracts
- uses: actions/download-artifact@v8.0.1
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 @@ -19,7 +19,7 @@ jobs:
build-cli:
runs-on: ubuntu-latest-8-cores
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: stellar/actions/rust-cache@main
- run: rustup update
- run: sudo apt update && sudo apt install -y libudev-dev libdbus-1-dev
Expand All @@ -34,7 +34,7 @@ jobs:
outputs:
dirs: ${{ steps.dirs.outputs.dirs }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
repository: stellar/soroban-examples
ref: main
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
experimental_spec_shaking_v2: [true, false]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
repository: stellar/soroban-examples
ref: main
Expand Down
Loading