Skip to content

Commit ed8ad7d

Browse files
Bump the github-actions group with 2 updates
Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) Updates `actions/cache` from 5 to 5.0.5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v5.0.5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: 5.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent dbf4cbb commit ed8ad7d

2 files changed

Lines changed: 25 additions & 25 deletions

File tree

.github/workflows/release.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
permissions:
1616
contents: write # Needed to create a release
1717
steps:
18-
- uses: actions/checkout@v6
18+
- uses: actions/checkout@v7
1919
with:
2020
persist-credentials: false
2121
fetch-depth: 0
@@ -39,7 +39,7 @@ jobs:
3939
name: Building Linux libraries
4040
runs-on: ubuntu-latest
4141
steps:
42-
- uses: actions/checkout@v6
42+
- uses: actions/checkout@v7
4343
with:
4444
persist-credentials: false
4545
- name: Build Linux
@@ -49,7 +49,7 @@ jobs:
4949
name: Building macOS libraries
5050
runs-on: macos-latest
5151
steps:
52-
- uses: actions/checkout@v6
52+
- uses: actions/checkout@v7
5353
with:
5454
persist-credentials: false
5555
- name: Build macOS
@@ -59,7 +59,7 @@ jobs:
5959
name: Building Windows libraries
6060
runs-on: windows-latest
6161
steps:
62-
- uses: actions/checkout@v6
62+
- uses: actions/checkout@v7
6363
with:
6464
persist-credentials: false
6565
- name: Build Windows
@@ -69,7 +69,7 @@ jobs:
6969
name: Building Android libraries
7070
runs-on: ubuntu-latest
7171
steps:
72-
- uses: actions/checkout@v6
72+
- uses: actions/checkout@v7
7373
with:
7474
persist-credentials: false
7575
- name: Build Android
@@ -82,7 +82,7 @@ jobs:
8282
name: Basic WASM build
8383
runs-on: ubuntu-latest
8484
steps:
85-
- uses: actions/checkout@v6
85+
- uses: actions/checkout@v7
8686
with:
8787
persist-credentials: false
8888

@@ -93,7 +93,7 @@ jobs:
9393
name: Build XCFramework
9494
runs-on: macos-latest
9595
steps:
96-
- uses: actions/checkout@v6
96+
- uses: actions/checkout@v7
9797
with:
9898
persist-credentials: false
9999
- name: Build XCFramework
@@ -104,7 +104,7 @@ jobs:
104104
needs: [ draft_release, libs_android ]
105105
runs-on: ubuntu-latest
106106
steps:
107-
- uses: actions/checkout@v6
107+
- uses: actions/checkout@v7
108108
with:
109109
persist-credentials: false
110110

@@ -126,7 +126,7 @@ jobs:
126126
needs: [ draft_release, libs_xcframework ]
127127
runs-on: macos-latest
128128
steps:
129-
- uses: actions/checkout@v6
129+
- uses: actions/checkout@v7
130130
with:
131131
persist-credentials: false
132132

@@ -189,7 +189,7 @@ jobs:
189189
contents: write # Needed to upload binaries to release.
190190

191191
steps:
192-
- uses: actions/checkout@v6
192+
- uses: actions/checkout@v7
193193
with:
194194
persist-credentials: false
195195

@@ -238,7 +238,7 @@ jobs:
238238
permissions:
239239
contents: write # Needed to upload binaries to release.
240240
steps:
241-
- uses: actions/checkout@v6
241+
- uses: actions/checkout@v7
242242
with:
243243
persist-credentials: false
244244

@@ -260,7 +260,7 @@ jobs:
260260
permissions:
261261
id-token: write # Required for OIDC token exchange
262262
steps:
263-
- uses: actions/checkout@v6
263+
- uses: actions/checkout@v7
264264
with:
265265
persist-credentials: false
266266
- uses: rust-lang/crates-io-auth-action@v1

.github/workflows/tests.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
security-events: write # Needed to upload findings as code scanning results.
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v6
18+
- uses: actions/checkout@v7
1919
with:
2020
persist-credentials: false
2121
- name: Run zizmor 🌈
@@ -28,7 +28,7 @@ jobs:
2828
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v6
31+
- uses: actions/checkout@v7
3232
with:
3333
persist-credentials: false
3434
- name: Build Linux libraries
@@ -39,7 +39,7 @@ jobs:
3939
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
4040
runs-on: macos-latest
4141
steps:
42-
- uses: actions/checkout@v6
42+
- uses: actions/checkout@v7
4343
with:
4444
persist-credentials: false
4545
- name: Build macOS
@@ -50,7 +50,7 @@ jobs:
5050
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
5151
runs-on: windows-latest
5252
steps:
53-
- uses: actions/checkout@v6
53+
- uses: actions/checkout@v7
5454
with:
5555
persist-credentials: false
5656

@@ -62,7 +62,7 @@ jobs:
6262
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
6363
runs-on: ubuntu-latest
6464
steps:
65-
- uses: actions/checkout@v6
65+
- uses: actions/checkout@v7
6666
with:
6767
persist-credentials: false
6868
- name: Build Android
@@ -75,7 +75,7 @@ jobs:
7575
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
7676
runs-on: ubuntu-latest
7777
steps:
78-
- uses: actions/checkout@v6
78+
- uses: actions/checkout@v7
7979
with:
8080
persist-credentials: false
8181

@@ -87,7 +87,7 @@ jobs:
8787
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository)
8888
runs-on: macos-latest
8989
steps:
90-
- uses: actions/checkout@v6
90+
- uses: actions/checkout@v7
9191
with:
9292
persist-credentials: false
9393
- name: Build XCFramework
@@ -102,7 +102,7 @@ jobs:
102102
matrix:
103103
os: [ubuntu-24.04, macos-latest]
104104
steps:
105-
- uses: actions/checkout@v6
105+
- uses: actions/checkout@v7
106106
with:
107107
persist-credentials: false
108108

@@ -147,7 +147,7 @@ jobs:
147147
os: [ubuntu-24.04, ubuntu-arm64, macos-latest, windows-latest, windows-11-arm]
148148

149149
steps:
150-
- uses: actions/checkout@v6
150+
- uses: actions/checkout@v7
151151
with:
152152
persist-credentials: false
153153

@@ -158,7 +158,7 @@ jobs:
158158
run: |
159159
dart pub get
160160
dart analyze
161-
- uses: actions/cache@v5
161+
- uses: actions/cache@v5.0.5
162162
with:
163163
path: dart/.dart_tool/hooks_runner/
164164
key: hooks-${{ matrix.os }}-${{ hashFiles('dart/pubspec.lock') }}
@@ -194,7 +194,7 @@ jobs:
194194
build_stable_rust:
195195
runs-on: ubuntu-latest
196196
steps:
197-
- uses: actions/checkout@v6
197+
- uses: actions/checkout@v7
198198
with:
199199
persist-credentials: false
200200

@@ -208,7 +208,7 @@ jobs:
208208
dart pub get
209209
dart analyze
210210
211-
- uses: actions/cache@v5
211+
- uses: actions/cache@v5.0.5
212212
with:
213213
path: dart/.dart_tool/hooks_runner/
214214
key: hooks-${{ matrix.os }}-${{ hashFiles('dart/pubspec.lock') }}
@@ -225,7 +225,7 @@ jobs:
225225
test_with_sanitizers:
226226
runs-on: ubuntu-latest
227227
steps:
228-
- uses: actions/checkout@v6
228+
- uses: actions/checkout@v7
229229
with:
230230
persist-credentials: false
231231
- uses: dart-lang/setup-dart@v1

0 commit comments

Comments
 (0)