Skip to content

Commit 5238a95

Browse files
Bump the dependencies group across 1 directory with 5 updates
Bumps the dependencies group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [step-security/harden-runner](https://github.com/step-security/harden-runner) | `2.19.4` | `2.20.0` | | [actions/checkout](https://github.com/actions/checkout) | `6` | `7` | | [actions/cache](https://github.com/actions/cache) | `4` | `6` | | [actions/setup-go](https://github.com/actions/setup-go) | `5` | `6` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `6` | `7` | Updates `step-security/harden-runner` from 2.19.4 to 2.20.0 - [Release notes](https://github.com/step-security/harden-runner/releases) - [Commits](step-security/harden-runner@v2.19.4...v2.20.0) Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v6...v7) Updates `actions/cache` from 4 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v6) Updates `actions/setup-go` from 5 to 6 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v5...v6) Updates `codecov/codecov-action` from 6 to 7 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v6...v7) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: step-security/harden-runner dependency-version: 2.20.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 77ae2f9 commit 5238a95

7 files changed

Lines changed: 17 additions & 17 deletions

File tree

.github/workflows/benchmarks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Harden Runner
22-
uses: step-security/harden-runner@v2.19.4
22+
uses: step-security/harden-runner@v2.20.0
2323
with:
2424
egress-policy: audit
2525

2626
- name: Checkout
27-
uses: actions/checkout@v6
27+
uses: actions/checkout@v7
2828

2929
- name: Log toolchain versions
3030
run: rustup --version && rustc --version && cargo --version
@@ -34,7 +34,7 @@ jobs:
3434
run: cargo bench --bench benchmark -- --output-format bencher | tee ../bench-result.txt
3535

3636
- name: Download previous benchmark data
37-
uses: actions/cache@v4
37+
uses: actions/cache@v6
3838
with:
3939
path: ./cache
4040
key: benchmark-${{ runner.os }}-${{ github.run_id }}

.github/workflows/code-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
actions: read
1818
id-token: write
1919
steps:
20-
- uses: actions/checkout@v6
20+
- uses: actions/checkout@v7
2121
with:
2222
ref: ${{ github.event.pull_request.head.sha }}
2323
fetch-depth: 1

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424

2525
steps:
2626
- name: Harden Runner
27-
uses: step-security/harden-runner@v2.19.4
27+
uses: step-security/harden-runner@v2.20.0
2828
with:
2929
egress-policy: audit
3030

3131
- name: Checkout
32-
uses: actions/checkout@v6
32+
uses: actions/checkout@v7
3333

3434
- name: Build the Docker image
3535
uses: docker/build-push-action@v7

.github/workflows/integration-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Harden Runner
38-
uses: step-security/harden-runner@v2.19.4
38+
uses: step-security/harden-runner@v2.20.0
3939
with:
4040
egress-policy: audit
4141

@@ -51,7 +51,7 @@ jobs:
5151
env:
5252
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5353
- name: Checkout
54-
uses: actions/checkout@v6
54+
uses: actions/checkout@v7
5555
with:
5656
ref: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.head.sha || github.sha }}
5757

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
runs-on: ubuntu-latest
3838
steps:
3939
- name: Harden Runner
40-
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
40+
uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0
4141
with:
4242
egress-policy: audit
4343

.github/workflows/rust.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ jobs:
2323
runs-on: ${{ matrix.os }}
2424
steps:
2525
- name: Harden Runner
26-
uses: step-security/harden-runner@v2.19.4
26+
uses: step-security/harden-runner@v2.20.0
2727
with:
2828
egress-policy: audit
2929

3030
- name: Checkout
31-
uses: actions/checkout@v6
31+
uses: actions/checkout@v7
3232
- name: Restore cached dependencies
33-
uses: actions/cache/restore@v5
33+
uses: actions/cache/restore@v6
3434
id: cache-restore
3535
with:
3636
path: |
@@ -52,7 +52,7 @@ jobs:
5252
uses: ilammy/setup-nasm@v1
5353
- name: Install Go (macOS)
5454
if: runner.os == 'macOS'
55-
uses: actions/setup-go@v5
55+
uses: actions/setup-go@v6
5656
with:
5757
go-version: 'stable'
5858
- name: Install Cargo binaries
@@ -68,7 +68,7 @@ jobs:
6868
- name: Code Coverage
6969
run: cargo llvm-cov --all-features --workspace --exclude integration-tests --codecov --output-path ./codecov.json
7070
- name: Publish Code Coverage
71-
uses: codecov/codecov-action@v6
71+
uses: codecov/codecov-action@v7
7272
with:
7373
files: ./codecov.json
7474
fail_ci_if_error: true
@@ -78,7 +78,7 @@ jobs:
7878
- name: Clippy
7979
run: cargo clippy --all-targets --all-features
8080
- name: Cache dependencies
81-
uses: actions/cache/save@v5
81+
uses: actions/cache/save@v6
8282
if: steps.cache-restore.outputs.cache-hit != 'true'
8383
with:
8484
path: |

.github/workflows/staging.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ jobs:
3131
runs-on: ${{ matrix.runner }}
3232
steps:
3333
- name: Harden Runner
34-
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
34+
uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0
3535
with:
3636
egress-policy: audit
3737

3838
- name: Checkout
39-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
39+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
4040
with:
4141
fetch-depth: 1
4242

0 commit comments

Comments
 (0)