Skip to content

Commit 31e3aca

Browse files
Bump the all-actions group across 1 directory with 7 updates
Bumps the all-actions group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `7` | | [EmbarkStudios/cargo-deny-action](https://github.com/embarkstudios/cargo-deny-action) | `2.0.15` | `2.1.1` | | [stellar/binaries](https://github.com/stellar/binaries) | `45` | `85` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `8` | | [denoland/setup-deno](https://github.com/denoland/setup-deno) | `2.0.2` | `2.0.5` | | [stellar/stellar-cli](https://github.com/stellar/stellar-cli) | `23.1.4` | `27.0.0` | Updates `actions/checkout` from 3 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v7) Updates `EmbarkStudios/cargo-deny-action` from 2.0.15 to 2.1.1 - [Release notes](https://github.com/embarkstudios/cargo-deny-action/releases) - [Commits](EmbarkStudios/cargo-deny-action@3fd3802...3c63498) Updates `stellar/binaries` from 45 to 85 - [Release notes](https://github.com/stellar/binaries/releases) - [Commits](stellar/binaries@v45...v85) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `actions/download-artifact` from 5 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v8) Updates `denoland/setup-deno` from 2.0.2 to 2.0.5 - [Release notes](https://github.com/denoland/setup-deno/releases) - [Commits](denoland/setup-deno@909cc5a...22d081f) Updates `stellar/stellar-cli` from 23.1.4 to 27.0.0 - [Release notes](https://github.com/stellar/stellar-cli/releases) - [Commits](stellar/stellar-cli@v23.1.4...v27.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: denoland/setup-deno dependency-version: 2.0.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-actions - dependency-name: EmbarkStudios/cargo-deny-action dependency-version: 2.0.17 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-actions - dependency-name: stellar/binaries dependency-version: '55' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: stellar/stellar-cli dependency-version: 26.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent f312342 commit 31e3aca

4 files changed

Lines changed: 31 additions & 31 deletions

File tree

.github/workflows/bump-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
needs: bump-version
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v6
26+
- uses: actions/checkout@v7
2727
with:
2828
ref: 'release/v${{ inputs.version }}'
2929
- run: rustup update

.github/workflows/rust.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
fmt:
7272
runs-on: ubuntu-latest
7373
steps:
74-
- uses: actions/checkout@v3
74+
- uses: actions/checkout@v7
7575
- run: rustup update
7676
- run: cargo fmt --all --check
7777

@@ -85,23 +85,23 @@ jobs:
8585
# Prevent sudden announcement of a new advisory from failing ci:
8686
continue-on-error: ${{ matrix.checks == 'advisories' }}
8787
steps:
88-
- uses: actions/checkout@v3
89-
- uses: EmbarkStudios/cargo-deny-action@3fd3802e88374d3fe9159b834c7714ec57d6c979
88+
- uses: actions/checkout@v7
89+
- uses: EmbarkStudios/cargo-deny-action@3c6349835b2b7b196a839186cb8b78e02f7b5f25
9090
with:
9191
command: check ${{ matrix.checks }}
9292

9393
check-git-rev-deps:
9494
runs-on: ubuntu-latest
9595
steps:
96-
- uses: actions/checkout@v3
96+
- uses: actions/checkout@v7
9797
- uses: stellar/actions/rust-check-git-rev-deps@main
9898

9999
semver-checks:
100100
# Push and merge queue events do not include PR labels, so only check pull request events.
101101
if: "github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'skip-semver-checks')"
102102
runs-on: ubuntu-latest
103103
steps:
104-
- uses: actions/checkout@v3
104+
- uses: actions/checkout@v7
105105
- run: rustup update stable
106106
- name: Determine Rust n-2 version since cargo-semver-checks is rarely available for the latest version
107107
id: rust-version
@@ -121,7 +121,7 @@ jobs:
121121
run: |
122122
rustc --version
123123
cargo --version
124-
- uses: stellar/binaries@v55
124+
- uses: stellar/binaries@v85
125125
with:
126126
name: cargo-semver-checks
127127
version: 0.46.0
@@ -140,7 +140,7 @@ jobs:
140140
sys: ${{ fromJSON(needs.setup.outputs.sys) }}
141141
runs-on: ${{ matrix.sys.os }}
142142
steps:
143-
- uses: actions/checkout@v3
143+
- uses: actions/checkout@v7
144144
- name: Install minimum supported rust version
145145
if: matrix.rust == 'msrv'
146146
run: |
@@ -166,15 +166,15 @@ jobs:
166166
if: matrix.rust == 'msrv'
167167
run: echo RUSTFLAGS='-Dwarnings' >> $GITHUB_ENV
168168
- run: echo CARGO_BUILD_TARGET='${{ matrix.sys.target }}' >> $GITHUB_ENV
169-
- uses: stellar/binaries@v45
169+
- uses: stellar/binaries@v85
170170
with:
171171
name: cargo-hack
172172
version: 0.5.28
173173
- run: cargo version
174174
- run: make build-libs
175175
- run: make build-test-wasms TEST_CRATES_RUSTUP_TOOLCHAIN=$RUSTUP_TOOLCHAIN
176176
- name: Upload test wasms
177-
uses: actions/upload-artifact@v4
177+
uses: actions/upload-artifact@v7
178178
with:
179179
name: test-wasms-${{ matrix.rust }}-${{ matrix.sys.target }}
180180
path: target/wasm32v1-none/release/test_*.wasm
@@ -189,7 +189,7 @@ jobs:
189189
sys: ${{ fromJSON(needs.setup.outputs.sys) }}
190190
runs-on: ${{ matrix.sys.os }}
191191
steps:
192-
- uses: actions/checkout@v3
192+
- uses: actions/checkout@v7
193193
- name: Install minimum supported rust version
194194
if: matrix.rust == 'msrv'
195195
run: |
@@ -215,12 +215,12 @@ jobs:
215215
if: matrix.rust == 'msrv'
216216
run: echo RUSTFLAGS='-Dwarnings' >> $GITHUB_ENV
217217
- run: echo CARGO_BUILD_TARGET='${{ matrix.sys.target }}' >> $GITHUB_ENV
218-
- uses: stellar/binaries@v45
218+
- uses: stellar/binaries@v85
219219
with:
220220
name: cargo-hack
221221
version: 0.5.28
222222
- name: Restore test wasms for tests from one of the msrv builds
223-
uses: actions/download-artifact@v5
223+
uses: actions/download-artifact@v8
224224
with:
225225
name: test-wasms-msrv-x86_64-unknown-linux-gnu
226226
path: target/wasm32v1-none/release/
@@ -234,10 +234,10 @@ jobs:
234234
build-fuzz:
235235
runs-on: ubuntu-latest
236236
steps:
237-
- uses: actions/checkout@v3
237+
- uses: actions/checkout@v7
238238
- uses: stellar/actions/rust-cache@main
239239
- run: rustup install nightly
240-
- uses: stellar/binaries@v45
240+
- uses: stellar/binaries@v85
241241
with:
242242
name: cargo-fuzz
243243
version: 0.13.1
@@ -248,7 +248,7 @@ jobs:
248248
docs:
249249
runs-on: ubuntu-latest
250250
steps:
251-
- uses: actions/checkout@v3
251+
- uses: actions/checkout@v7
252252
- uses: stellar/actions/rust-cache@main
253253
- run: rustup install nightly
254254
- run: make doc
@@ -258,7 +258,7 @@ jobs:
258258
readme:
259259
runs-on: ubuntu-latest
260260
steps:
261-
- uses: actions/checkout@v3
261+
- uses: actions/checkout@v7
262262
- uses: stellar/actions/rust-cache@main
263263
- run: rustup install nightly
264264
- run: make readme
@@ -267,7 +267,7 @@ jobs:
267267
migration-docs:
268268
runs-on: ubuntu-latest
269269
steps:
270-
- uses: actions/checkout@v3
270+
- uses: actions/checkout@v7
271271
- uses: stellar/actions/rust-cache@main
272272
- run: rustup update
273273
- run: |
@@ -278,19 +278,19 @@ jobs:
278278
expand-test-wasms:
279279
runs-on: ubuntu-latest
280280
steps:
281-
- uses: actions/checkout@v5
281+
- uses: actions/checkout@v7
282282
- uses: stellar/actions/rust-cache@main
283283
- name: Install minimum supported rust version
284284
run: |
285285
msrv="$(make msrv)"
286286
rustup install $msrv
287287
rustup target add --toolchain $msrv wasm32v1-none
288288
rustup component add rustfmt
289-
- uses: stellar/binaries@v45
289+
- uses: stellar/binaries@v85
290290
with:
291291
name: cargo-hack
292292
version: 0.5.28
293-
- uses: stellar/binaries@v45
293+
- uses: stellar/binaries@v85
294294
with:
295295
name: cargo-expand
296296
version: 1.0.116

.github/workflows/test-with-openzeppelin-stellar-contracts.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
collect-crates:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v7
2222
with:
2323
repository: OpenZeppelin/stellar-contracts
2424
ref: main
@@ -43,12 +43,12 @@ jobs:
4343
runs-on: ubuntu-latest
4444
steps:
4545
- name: Checkout rs-soroban-sdk
46-
uses: actions/checkout@v5
46+
uses: actions/checkout@v7
4747
with:
4848
path: rs-soroban-sdk
4949

5050
- name: Checkout OpenZeppelin stellar-contracts
51-
uses: actions/checkout@v5
51+
uses: actions/checkout@v7
5252
with:
5353
repository: OpenZeppelin/stellar-contracts
5454
ref: main
@@ -192,7 +192,7 @@ jobs:
192192

193193
- name: Upload WASM artifacts
194194
if: steps.check-if-contract.outputs.is-a-contract == 'true'
195-
uses: actions/upload-artifact@v4
195+
uses: actions/upload-artifact@v7
196196
with:
197197
name: ${{ steps.artifact-name.outputs.name }}
198198
path: 'stellar-contracts/target/wasm32v1-none/release/*.wasm'

.github/workflows/test-with-soroban-examples.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
collect-examples:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v7
2222
with:
2323
repository: stellar/soroban-examples
2424
ref: main
@@ -48,12 +48,12 @@ jobs:
4848
runs-on: ubuntu-latest
4949
steps:
5050
- name: Checkout rs-soroban-sdk
51-
uses: actions/checkout@v5
51+
uses: actions/checkout@v7
5252
with:
5353
path: rs-soroban-sdk
5454

5555
- name: Checkout soroban-examples
56-
uses: actions/checkout@v5
56+
uses: actions/checkout@v7
5757
with:
5858
repository: stellar/soroban-examples
5959
ref: main
@@ -64,11 +64,11 @@ jobs:
6464
rustup update
6565
rustup target add wasm32v1-none
6666
67-
- uses: denoland/setup-deno@909cc5acb0fdd60627fb858598759246509fa755 # v2.0.2
67+
- uses: denoland/setup-deno@22d081ff2d3a40755e97629de92e3bcbfa7cf2ed # v2.0.5
6868
with:
6969
deno-version: v2.x
7070

71-
- uses: stellar/stellar-cli@v23.1.4
71+
- uses: stellar/stellar-cli@v27.0.0
7272

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

@@ -204,7 +204,7 @@ jobs:
204204
run: echo "name=wasm-$(echo ${{ matrix.working-directory }} | sed 's/\//-/g')${{ matrix.experimental_spec_shaking_v2 && '-spec-shaking-v2' || '' }}" | tee -a $GITHUB_OUTPUT
205205

206206
- name: Upload WASM artifacts
207-
uses: actions/upload-artifact@v4
207+
uses: actions/upload-artifact@v7
208208
with:
209209
name: ${{ steps.artifact-name.outputs.name }}
210210
path: 'soroban-examples/${{ matrix.working-directory }}/**/*.wasm'

0 commit comments

Comments
 (0)