Skip to content

Commit 233eb4c

Browse files
Bump the all-actions group across 1 directory with 4 updates
Bumps the all-actions group with 4 updates in the / directory: [actions/download-artifact](https://github.com/actions/download-artifact), [digicert/code-signing-software-trust-action](https://github.com/digicert/code-signing-software-trust-action), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [ruby/setup-ruby](https://github.com/ruby/setup-ruby). Updates `actions/download-artifact` from 4.3.0 to 8.0.1 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4.3.0...v8.0.1) Updates `digicert/code-signing-software-trust-action` from 1.1.0 to 1.2.0 - [Release notes](https://github.com/digicert/code-signing-software-trust-action/releases) - [Commits](digicert/code-signing-software-trust-action@v1.1.0...v1.2.0) Updates `actions/upload-artifact` from 4.6.2 to 7.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4.6.2...v7) Updates `ruby/setup-ruby` from 1.293.0 to 1.299.0 - [Release notes](https://github.com/ruby/setup-ruby/releases) - [Changelog](https://github.com/ruby/setup-ruby/blob/master/release.rb) - [Commits](ruby/setup-ruby@dffb23f...3ff19f5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: 8.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: digicert/code-signing-software-trust-action dependency-version: 1.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-actions - dependency-name: actions/upload-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: ruby/setup-ruby dependency-version: 1.299.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent b36124d commit 233eb4c

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/binaries.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
echo "DEB_PKG_DIR=stellar-cli_${version}_${{ matrix.arch }}" >> $GITHUB_ENV
116116
117117
- name: Download Artifact
118-
uses: actions/download-artifact@v8
118+
uses: actions/download-artifact@v8.0.1
119119
with:
120120
name: ${{ env.ARTIFACT_NAME }}
121121

@@ -170,7 +170,7 @@ jobs:
170170
echo "SM_CLIENT_CERT_FILE=D:\\sm_client_cert.p12" >> "$GITHUB_ENV"
171171
172172
- name: Download Artifact
173-
uses: actions/download-artifact@v8
173+
uses: actions/download-artifact@v8.0.1
174174
with:
175175
name: ${{ env.ARTIFACT_NAME }}
176176

@@ -205,7 +205,7 @@ jobs:
205205
if:
206206
github.event_name == 'release' || startsWith(github.ref, 'refs/heads/release/') || startsWith(github.head_ref, 'release/')
207207
id: stm-setup
208-
uses: digicert/code-signing-software-trust-action@v1.1.0
208+
uses: digicert/code-signing-software-trust-action@v1.2.0
209209
with:
210210
simple-signing-mode: true
211211
keypair-alias: key_1412258126

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: cargo build --package stellar-cli --release
4141

4242
- name: Upload binary
43-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
43+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
4444
with:
4545
name: stellar-${{ matrix.arch }}
4646
path: target/release/stellar
@@ -58,7 +58,7 @@ jobs:
5858
fetch-depth: 0
5959

6060
- name: Download binaries
61-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
61+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
6262
with:
6363
pattern: stellar-*
6464
merge-multiple: false

.github/workflows/test-install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
29-
- uses: ruby/setup-ruby@dffb23f65a78bba8db45d387d5ea1bbd6be3ef18 # v1.293.0
29+
- uses: ruby/setup-ruby@3ff19f5e2baf30647122352b96108b1fbe250c64 # v1.299.0
3030
with:
3131
ruby-version: ruby
3232
- name: Run install tests

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- run: rustup update
2525
- run: sudo apt update && sudo apt install -y libudev-dev libdbus-1-dev
2626
- run: make install
27-
- uses: actions/upload-artifact@v7
27+
- uses: actions/upload-artifact@v7.0.0
2828
with:
2929
name: stellar-cli
3030
path: ~/.cargo/bin/stellar
@@ -58,7 +58,7 @@ jobs:
5858
- uses: actions/checkout@v6
5959
with:
6060
repository: OpenZeppelin/stellar-contracts
61-
- uses: actions/download-artifact@v8
61+
- uses: actions/download-artifact@v8.0.1
6262
with:
6363
name: stellar-cli
6464
path: stellar-cli
@@ -89,7 +89,7 @@ jobs:
8989
id: artifact-name
9090
run: echo "name=wasm-$(echo ${{ matrix.dir }} | sed 's/\//-/g')${{ matrix.experimental_spec_shaking_v2 && '-spec-shaking-v2' || '' }}" | tee -a $GITHUB_OUTPUT
9191
- name: Upload WASM artifacts
92-
uses: actions/upload-artifact@v7
92+
uses: actions/upload-artifact@v7.0.0
9393
with:
9494
name: ${{ steps.artifact-name.outputs.name }}
9595
path: ${{ steps.find-wasm.outputs.wasm }}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- run: rustup update
2525
- run: sudo apt update && sudo apt install -y libudev-dev libdbus-1-dev
2626
- run: make install
27-
- uses: actions/upload-artifact@v7
27+
- uses: actions/upload-artifact@v7.0.0
2828
with:
2929
name: stellar-cli
3030
path: ~/.cargo/bin/stellar
@@ -66,7 +66,7 @@ jobs:
6666
with:
6767
repository: stellar/soroban-examples
6868
ref: main
69-
- uses: actions/download-artifact@v8
69+
- uses: actions/download-artifact@v8.0.1
7070
with:
7171
name: stellar-cli
7272
path: stellar-cli
@@ -97,7 +97,7 @@ jobs:
9797
id: artifact-name
9898
run: echo "name=wasm-$(echo ${{ matrix.dir }} | sed 's/\//-/g')${{ matrix.experimental_spec_shaking_v2 && '-spec-shaking-v2' || '' }}" | tee -a $GITHUB_OUTPUT
9999
- name: Upload WASM artifacts
100-
uses: actions/upload-artifact@v7
100+
uses: actions/upload-artifact@v7.0.0
101101
with:
102102
name: ${{ steps.artifact-name.outputs.name }}
103103
path: ${{ steps.find-wasm.outputs.wasm }}

0 commit comments

Comments
 (0)