Skip to content

Commit 37d132b

Browse files
Bump the all-actions group across 1 directory with 6 updates
Bumps the all-actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `6` | | [stellar/binaries](https://github.com/stellar/binaries) | `45` | `53` | | [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.3` | | [stellar/stellar-cli](https://github.com/stellar/stellar-cli) | `23.1.4` | `25.1.0` | Updates `actions/checkout` from 3 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v6) Updates `stellar/binaries` from 45 to 53 - [Release notes](https://github.com/stellar/binaries/releases) - [Commits](stellar/binaries@v45...v53) 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.3 - [Release notes](https://github.com/denoland/setup-deno/releases) - [Commits](denoland/setup-deno@909cc5a...e95548e) Updates `stellar/stellar-cli` from 23.1.4 to 25.1.0 - [Release notes](https://github.com/stellar/stellar-cli/releases) - [Commits](stellar/stellar-cli@v23.1.4...v25.1.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: stellar/binaries dependency-version: '53' 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: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: denoland/setup-deno dependency-version: 2.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-actions - dependency-name: stellar/stellar-cli dependency-version: 25.1.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 f32cd2c commit 37d132b

File tree

3 files changed

+29
-29
lines changed

3 files changed

+29
-29
lines changed

.github/workflows/rust.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
fmt:
7171
runs-on: ubuntu-latest
7272
steps:
73-
- uses: actions/checkout@v3
73+
- uses: actions/checkout@v6
7474
- run: rustup update
7575
- run: cargo fmt --all --check
7676

@@ -84,21 +84,21 @@ jobs:
8484
# Prevent sudden announcement of a new advisory from failing ci:
8585
continue-on-error: ${{ matrix.checks == 'advisories' }}
8686
steps:
87-
- uses: actions/checkout@v3
87+
- uses: actions/checkout@v6
8888
- uses: EmbarkStudios/cargo-deny-action@3fd3802e88374d3fe9159b834c7714ec57d6c979
8989
with:
9090
command: check ${{ matrix.checks }}
9191

9292
check-git-rev-deps:
9393
runs-on: ubuntu-latest
9494
steps:
95-
- uses: actions/checkout@v3
95+
- uses: actions/checkout@v6
9696
- uses: stellar/actions/rust-check-git-rev-deps@main
9797

9898
semver-checks:
9999
runs-on: ubuntu-latest
100100
steps:
101-
- uses: actions/checkout@v3
101+
- uses: actions/checkout@v6
102102
- run: rustup update stable
103103
- name: Determine Rust n-2 version since cargo-semver-checks is rarely available for the latest version
104104
id: rust-version
@@ -118,7 +118,7 @@ jobs:
118118
run: |
119119
rustc --version
120120
cargo --version
121-
- uses: stellar/binaries@v51
121+
- uses: stellar/binaries@v55
122122
with:
123123
name: cargo-semver-checks
124124
version: 0.45.0
@@ -137,7 +137,7 @@ jobs:
137137
sys: ${{ fromJSON(needs.setup.outputs.sys) }}
138138
runs-on: ${{ matrix.sys.os }}
139139
steps:
140-
- uses: actions/checkout@v3
140+
- uses: actions/checkout@v6
141141
- name: Install minimum supported rust version
142142
if: matrix.rust == 'msrv'
143143
run: |
@@ -163,15 +163,15 @@ jobs:
163163
if: matrix.rust == 'msrv'
164164
run: echo RUSTFLAGS='-Dwarnings' >> $GITHUB_ENV
165165
- run: echo CARGO_BUILD_TARGET='${{ matrix.sys.target }}' >> $GITHUB_ENV
166-
- uses: stellar/binaries@v45
166+
- uses: stellar/binaries@v55
167167
with:
168168
name: cargo-hack
169169
version: 0.5.28
170170
- run: cargo version
171171
- run: make build-libs
172172
- run: make build-test-wasms TEST_CRATES_RUSTUP_TOOLCHAIN=$RUSTUP_TOOLCHAIN
173173
- name: Upload test wasms
174-
uses: actions/upload-artifact@v4
174+
uses: actions/upload-artifact@v7
175175
with:
176176
name: test-wasms-${{ matrix.rust }}-${{ matrix.sys.target }}
177177
path: target/wasm32v1-none/release/test_*.wasm
@@ -186,7 +186,7 @@ jobs:
186186
sys: ${{ fromJSON(needs.setup.outputs.sys) }}
187187
runs-on: ${{ matrix.sys.os }}
188188
steps:
189-
- uses: actions/checkout@v3
189+
- uses: actions/checkout@v6
190190
- name: Install minimum supported rust version
191191
if: matrix.rust == 'msrv'
192192
run: |
@@ -212,12 +212,12 @@ jobs:
212212
if: matrix.rust == 'msrv'
213213
run: echo RUSTFLAGS='-Dwarnings' >> $GITHUB_ENV
214214
- run: echo CARGO_BUILD_TARGET='${{ matrix.sys.target }}' >> $GITHUB_ENV
215-
- uses: stellar/binaries@v45
215+
- uses: stellar/binaries@v55
216216
with:
217217
name: cargo-hack
218218
version: 0.5.28
219219
- name: Restore test wasms for tests from one of the msrv builds
220-
uses: actions/download-artifact@v5
220+
uses: actions/download-artifact@v8
221221
with:
222222
name: test-wasms-msrv-x86_64-unknown-linux-gnu
223223
path: target/wasm32v1-none/release/
@@ -231,10 +231,10 @@ jobs:
231231
build-fuzz:
232232
runs-on: ubuntu-latest
233233
steps:
234-
- uses: actions/checkout@v3
234+
- uses: actions/checkout@v6
235235
- uses: stellar/actions/rust-cache@main
236236
- run: rustup install nightly
237-
- uses: stellar/binaries@v45
237+
- uses: stellar/binaries@v55
238238
with:
239239
name: cargo-fuzz
240240
version: 0.13.1
@@ -245,7 +245,7 @@ jobs:
245245
docs:
246246
runs-on: ubuntu-latest
247247
steps:
248-
- uses: actions/checkout@v3
248+
- uses: actions/checkout@v6
249249
- uses: stellar/actions/rust-cache@main
250250
- run: rustup install nightly
251251
- run: make doc
@@ -255,7 +255,7 @@ jobs:
255255
readme:
256256
runs-on: ubuntu-latest
257257
steps:
258-
- uses: actions/checkout@v3
258+
- uses: actions/checkout@v6
259259
- uses: stellar/actions/rust-cache@main
260260
- run: rustup install nightly
261261
- run: make readme
@@ -264,7 +264,7 @@ jobs:
264264
migration-docs:
265265
runs-on: ubuntu-latest
266266
steps:
267-
- uses: actions/checkout@v3
267+
- uses: actions/checkout@v6
268268
- uses: stellar/actions/rust-cache@main
269269
- run: rustup update
270270
- run: |
@@ -275,19 +275,19 @@ jobs:
275275
expand-test-wasms:
276276
runs-on: ubuntu-latest
277277
steps:
278-
- uses: actions/checkout@v5
278+
- uses: actions/checkout@v6
279279
- uses: stellar/actions/rust-cache@main
280280
- name: Install minimum supported rust version
281281
run: |
282282
msrv="$(make msrv)"
283283
rustup install $msrv
284284
rustup target add --toolchain $msrv wasm32v1-none
285285
rustup component add rustfmt
286-
- uses: stellar/binaries@v45
286+
- uses: stellar/binaries@v55
287287
with:
288288
name: cargo-hack
289289
version: 0.5.28
290-
- uses: stellar/binaries@v45
290+
- uses: stellar/binaries@v55
291291
with:
292292
name: cargo-expand
293293
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@v6
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@v6
4747
with:
4848
path: rs-soroban-sdk
4949

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

104104
- name: Upload WASM artifacts
105105
if: steps.check-if-contract.outputs.is-a-contract == 'true'
106-
uses: actions/upload-artifact@v4
106+
uses: actions/upload-artifact@v7
107107
with:
108108
name: ${{ steps.artifact-name.outputs.name }}
109109
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@v6
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@v6
5252
with:
5353
path: rs-soroban-sdk
5454

5555
- name: Checkout soroban-examples
56-
uses: actions/checkout@v5
56+
uses: actions/checkout@v6
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@667a34cdef165d8d2b2e98dde39547c9daac7282 # v2.0.4
6868
with:
6969
deno-version: v2.x
7070

71-
- uses: stellar/stellar-cli@v23.1.4
71+
- uses: stellar/stellar-cli@v25.2.0
7272

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

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

120120
- name: Upload WASM artifacts
121-
uses: actions/upload-artifact@v4
121+
uses: actions/upload-artifact@v7
122122
with:
123123
name: ${{ steps.artifact-name.outputs.name }}
124124
path: 'soroban-examples/${{ matrix.working-directory }}/**/*.wasm'

0 commit comments

Comments
 (0)