Skip to content

Commit b32b412

Browse files
Bump the all-actions group with 6 updates
Bumps the all-actions group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `5` | | [EmbarkStudios/cargo-deny-action](https://github.com/embarkstudios/cargo-deny-action) | `1.6.2` | `2.0.13` | | [stellar/binaries](https://github.com/stellar/binaries) | `45` | `49` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `6` | | [denoland/setup-deno](https://github.com/denoland/setup-deno) | `2.0.2` | `2.0.3` | Updates `actions/checkout` from 3 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v5) Updates `EmbarkStudios/cargo-deny-action` from 1.6.2 to 2.0.13 - [Release notes](https://github.com/embarkstudios/cargo-deny-action/releases) - [Commits](EmbarkStudios/cargo-deny-action@b01e7a8...f2ba7ab) Updates `stellar/binaries` from 45 to 49 - [Release notes](https://github.com/stellar/binaries/releases) - [Commits](stellar/binaries@v45...v49) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) 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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: EmbarkStudios/cargo-deny-action dependency-version: 2.0.13 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: stellar/binaries dependency-version: '49' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/download-artifact dependency-version: '6' 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 ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 0a1c1c0 commit b32b412

File tree

3 files changed

+22
-22
lines changed

3 files changed

+22
-22
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@v5
7474
- run: rustup update
7575
- run: cargo fmt --all --check
7676

@@ -84,23 +84,23 @@ 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
88-
- uses: EmbarkStudios/cargo-deny-action@b01e7a8cfb1f496c52d77361e84c1840d8246393
87+
- uses: actions/checkout@v5
88+
- uses: EmbarkStudios/cargo-deny-action@f2ba7abc2abebaf185c833c3961145a3c275caad
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@v5
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@v5
102102
- run: rustup update
103-
- uses: stellar/binaries@v45
103+
- uses: stellar/binaries@v49
104104
with:
105105
name: cargo-semver-checks
106106
version: 0.44.0
@@ -119,7 +119,7 @@ jobs:
119119
sys: ${{ fromJSON(needs.setup.outputs.sys) }}
120120
runs-on: ${{ matrix.sys.os }}
121121
steps:
122-
- uses: actions/checkout@v3
122+
- uses: actions/checkout@v5
123123
- name: Install minimum supported rust version
124124
if: matrix.rust == 'msrv'
125125
run: |
@@ -145,15 +145,15 @@ jobs:
145145
if: matrix.rust == 'msrv'
146146
run: echo RUSTFLAGS='-Dwarnings' >> $GITHUB_ENV
147147
- run: echo CARGO_BUILD_TARGET='${{ matrix.sys.target }}' >> $GITHUB_ENV
148-
- uses: stellar/binaries@v45
148+
- uses: stellar/binaries@v49
149149
with:
150150
name: cargo-hack
151151
version: 0.5.28
152152
- run: cargo version
153153
- run: make build-libs
154154
- run: make build-test-wasms TEST_CRATES_RUSTUP_TOOLCHAIN=$RUSTUP_TOOLCHAIN
155155
- name: Upload test wasms
156-
uses: actions/upload-artifact@v4
156+
uses: actions/upload-artifact@v5
157157
with:
158158
name: test-wasms-${{ matrix.rust }}-${{ matrix.sys.target }}
159159
path: target/wasm32v1-none/release/test_*.wasm
@@ -168,7 +168,7 @@ jobs:
168168
sys: ${{ fromJSON(needs.setup.outputs.sys) }}
169169
runs-on: ${{ matrix.sys.os }}
170170
steps:
171-
- uses: actions/checkout@v3
171+
- uses: actions/checkout@v5
172172
- name: Install minimum supported rust version
173173
if: matrix.rust == 'msrv'
174174
run: |
@@ -194,12 +194,12 @@ jobs:
194194
if: matrix.rust == 'msrv'
195195
run: echo RUSTFLAGS='-Dwarnings' >> $GITHUB_ENV
196196
- run: echo CARGO_BUILD_TARGET='${{ matrix.sys.target }}' >> $GITHUB_ENV
197-
- uses: stellar/binaries@v45
197+
- uses: stellar/binaries@v49
198198
with:
199199
name: cargo-hack
200200
version: 0.5.28
201201
- name: Restore test wasms for tests from one of the msrv builds
202-
uses: actions/download-artifact@v5
202+
uses: actions/download-artifact@v6
203203
with:
204204
name: test-wasms-msrv-x86_64-unknown-linux-gnu
205205
path: target/wasm32v1-none/release/
@@ -213,10 +213,10 @@ jobs:
213213
build-fuzz:
214214
runs-on: ubuntu-latest
215215
steps:
216-
- uses: actions/checkout@v3
216+
- uses: actions/checkout@v5
217217
- uses: stellar/actions/rust-cache@main
218218
- run: rustup install nightly
219-
- uses: stellar/binaries@v45
219+
- uses: stellar/binaries@v49
220220
with:
221221
name: cargo-fuzz
222222
version: 0.13.1
@@ -227,7 +227,7 @@ jobs:
227227
docs:
228228
runs-on: ubuntu-latest
229229
steps:
230-
- uses: actions/checkout@v3
230+
- uses: actions/checkout@v5
231231
- uses: stellar/actions/rust-cache@main
232232
- run: rustup install nightly
233233
- run: make doc
@@ -237,7 +237,7 @@ jobs:
237237
readme:
238238
runs-on: ubuntu-latest
239239
steps:
240-
- uses: actions/checkout@v3
240+
- uses: actions/checkout@v5
241241
- uses: stellar/actions/rust-cache@main
242242
- run: rustup install nightly
243243
- run: make readme
@@ -246,7 +246,7 @@ jobs:
246246
migration-docs:
247247
runs-on: ubuntu-latest
248248
steps:
249-
- uses: actions/checkout@v3
249+
- uses: actions/checkout@v5
250250
- uses: stellar/actions/rust-cache@main
251251
- run: rustup update
252252
- run: |
@@ -264,11 +264,11 @@ jobs:
264264
msrv="$(make msrv)"
265265
rustup install $msrv
266266
rustup target add --toolchain $msrv wasm32v1-none
267-
- uses: stellar/binaries@v45
267+
- uses: stellar/binaries@v49
268268
with:
269269
name: cargo-hack
270270
version: 0.5.28
271-
- uses: stellar/binaries@v45
271+
- uses: stellar/binaries@v49
272272
with:
273273
name: cargo-expand
274274
version: 1.0.116

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292

9393
- name: Upload WASM artifacts
9494
if: steps.check-if-contract.outputs.is-a-contract == 'true'
95-
uses: actions/upload-artifact@v4
95+
uses: actions/upload-artifact@v5
9696
with:
9797
name: ${{ steps.artifact-name.outputs.name }}
9898
path: 'stellar-contracts/target/wasm32v1-none/release/*.wasm'

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
rustup update
6464
rustup target add wasm32v1-none
6565
66-
- uses: denoland/setup-deno@909cc5acb0fdd60627fb858598759246509fa755 # v2.0.2
66+
- uses: denoland/setup-deno@e95548e56dfa95d4e1a28d6f422fafe75c4c26fb # v2.0.3
6767
with:
6868
deno-version: v2.x
6969

@@ -98,7 +98,7 @@ jobs:
9898
run: echo "name=wasm-$(echo ${{ matrix.working-directory }} | sed 's/\//-/g')" | tee -a $GITHUB_OUTPUT
9999

100100
- name: Upload WASM artifacts
101-
uses: actions/upload-artifact@v4
101+
uses: actions/upload-artifact@v5
102102
with:
103103
name: ${{ steps.artifact-name.outputs.name }}
104104
path: 'soroban-examples/${{ matrix.working-directory }}/**/*.wasm'

0 commit comments

Comments
 (0)