Skip to content

Commit 13774b0

Browse files
Bump the all-actions group across 1 directory with 3 updates
Bumps the all-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [EmbarkStudios/cargo-deny-action](https://github.com/embarkstudios/cargo-deny-action) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 3 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) Updates `EmbarkStudios/cargo-deny-action` from 1.5.5 to 2.0.1 - [Release notes](https://github.com/embarkstudios/cargo-deny-action/releases) - [Commits](EmbarkStudios/cargo-deny-action@1e59595...8371184) Updates `actions/cache` from 3.3.1 to 4.1.1 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3.3.1...v4.1.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: EmbarkStudios/cargo-deny-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent c35b371 commit 13774b0

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/build.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ jobs:
2323
fmt:
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727
- run: rustup component add rustfmt
2828
- run: rustup update
2929
- run: cargo fmt --all --check
3030

3131
cackle:
3232
runs-on: ubuntu-latest
3333
steps:
34-
- uses: actions/checkout@v3
34+
- uses: actions/checkout@v4
3535
- uses: cackle-rs/cackle-action@997327f77e59d9cda7b0b6217f0fbdbd3f3ca904
3636
- run: cargo acl -n test
3737

@@ -45,8 +45,8 @@ jobs:
4545
# Prevent sudden announcement of a new advisory from failing ci:
4646
continue-on-error: ${{ matrix.checks == 'advisories' }}
4747
steps:
48-
- uses: actions/checkout@v3
49-
- uses: EmbarkStudios/cargo-deny-action@1e59595bed8fc55c969333d08d7817b36888f0c5
48+
- uses: actions/checkout@v4
49+
- uses: EmbarkStudios/cargo-deny-action@8371184bd11e21dcf8ac82ebf8c9c9f74ebf7268
5050
with:
5151
command: check ${{ matrix.checks }}
5252
# leave arguments empty so we don't test --all-features
@@ -56,7 +56,7 @@ jobs:
5656
rust-check-git-rev-deps:
5757
runs-on: ubuntu-latest
5858
steps:
59-
- uses: actions/checkout@v3
59+
- uses: actions/checkout@v4
6060
- uses: stellar/actions/rust-check-git-rev-deps@main
6161

6262
build:
@@ -89,7 +89,7 @@ jobs:
8989
# bother filing another.
9090
- name: Probe Cache
9191
id: cache
92-
uses: actions/cache/restore@v3.3.1
92+
uses: actions/cache/restore@v4.1.1
9393
with:
9494
path: ${{ env.CACHED_PATHS }}
9595
key: ${{ runner.os }}-${{ matrix.toolchain }}-${{ matrix.protocol }}-${{ github.sha }}
@@ -99,14 +99,14 @@ jobs:
9999
# This will restore the most-recently-written cache (github does this date ordering itself).
100100
- name: Restore Cache
101101
if: steps.cache.outputs.cache-hit != 'true'
102-
uses: actions/cache/restore@v3.3.1
102+
uses: actions/cache/restore@v4.1.1
103103
with:
104104
path: ${{ env.CACHED_PATHS }}
105105
key: ${{ steps.cache.outputs.cache-primary-key }}
106106
restore-keys: |
107107
${{ runner.os }}-${{ matrix.toolchain }}-${{ matrix.protocol }}
108108
109-
- uses: actions/checkout@v3.5.2
109+
- uses: actions/checkout@v4
110110
if: steps.cache.outputs.cache-hit != 'true'
111111
with:
112112
fetch-depth: 200
@@ -151,7 +151,7 @@ jobs:
151151
./ci-build.sh --use-temp-db --protocol ${{ matrix.protocol }} ${{ matrix.scenario }}
152152
153153
# We only _save_ to the cache when we had a cache miss, are running on master, and are the non-txmeta scenario.
154-
- uses: actions/cache/save@v3.3.1
154+
- uses: actions/cache/save@v4.1.1
155155
if: ${{ steps.cache.outputs.cache-hit != 'true' && github.ref_name == 'master' && matrix.scenario == ''}}
156156
with:
157157
path: ${{ env.CACHED_PATHS }}

0 commit comments

Comments
 (0)