Skip to content

Commit f305863

Browse files
build(deps): bump actions/cache from 5 to 6 (#5231)
Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 12da132 commit f305863

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/unit_tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
- uses: actions/checkout@v7
7474
- uses: ./.github/workflows/composite/setup
7575
- name: Restore parallel_rspec runtime logs
76-
uses: actions/cache/restore@v5
76+
uses: actions/cache/restore@v6
7777
with:
7878
path: tmp/parallel_runtime_rspec_*.log
7979
key: parallel-runtime-postgres-${{ matrix.image }}-${{ github.run_id }}
@@ -84,7 +84,7 @@ jobs:
8484
run: DB=postgres POSTGRES_CONNECTION_PREFIX="postgres://postgres:rootpassword@localhost:5432" RSPEC_PROFILE="${{ inputs.rspec_profile }}" bundle exec rake spec
8585
- name: Save parallel_rspec runtime logs
8686
if: always() && github.ref == 'refs/heads/main'
87-
uses: actions/cache/save@v5
87+
uses: actions/cache/save@v6
8888
with:
8989
path: tmp/parallel_runtime_rspec_*.log
9090
key: parallel-runtime-postgres-${{ matrix.image }}-${{ github.run_id }}
@@ -127,7 +127,7 @@ jobs:
127127
- uses: actions/checkout@v7
128128
- uses: ./.github/workflows/composite/setup
129129
- name: Restore parallel_rspec runtime logs
130-
uses: actions/cache/restore@v5
130+
uses: actions/cache/restore@v6
131131
with:
132132
path: tmp/parallel_runtime_rspec_*.log
133133
key: parallel-runtime-mysql-${{ matrix.image }}-${{ github.run_id }}
@@ -138,7 +138,7 @@ jobs:
138138
run: DB=mysql MYSQL_CONNECTION_PREFIX="mysql2://root:password@127.0.0.1:3306" RSPEC_PROFILE="${{ inputs.rspec_profile }}" bundle exec rake spec
139139
- name: Save parallel_rspec runtime logs
140140
if: always() && github.ref == 'refs/heads/main'
141-
uses: actions/cache/save@v5
141+
uses: actions/cache/save@v6
142142
with:
143143
path: tmp/parallel_runtime_rspec_*.log
144144
key: parallel-runtime-mysql-${{ matrix.image }}-${{ github.run_id }}

0 commit comments

Comments
 (0)