Skip to content

Commit 741d175

Browse files
build(deps): Bump actions/checkout from 6 to 7 (#1149)
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' 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 a8ea6aa commit 741d175

8 files changed

Lines changed: 14 additions & 14 deletions

.github/workflows/apple-builds.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: iOS
1212
runs-on: macos-26
1313
steps:
14-
- uses: actions/checkout@v6
14+
- uses: actions/checkout@v7
1515
- name: Build for iOS
1616
run: |
1717
xcrun xcodebuild \
@@ -25,7 +25,7 @@ jobs:
2525
name: tvOS
2626
runs-on: macos-26
2727
steps:
28-
- uses: actions/checkout@v6
28+
- uses: actions/checkout@v7
2929
- name: Build for tvOS
3030
run: |
3131
xcrun xcodebuild \
@@ -39,7 +39,7 @@ jobs:
3939
name: watchOS
4040
runs-on: macos-26
4141
steps:
42-
- uses: actions/checkout@v6
42+
- uses: actions/checkout@v7
4343
- name: Build for watchOS
4444
run: |
4545
xcrun xcodebuild \
@@ -53,7 +53,7 @@ jobs:
5353
name: visionOS
5454
runs-on: macos-26
5555
steps:
56-
- uses: actions/checkout@v6
56+
- uses: actions/checkout@v7
5757
- name: Build for visionOS
5858
run: |
5959
xcrun xcodebuild \
@@ -69,7 +69,7 @@ jobs:
6969
env:
7070
DEVELOPER_DIR: /Applications/Xcode_26.4.app/Contents/Developer
7171
steps:
72-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
72+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
7373
- name: Validate P256K DocC
7474
run: swift package generate-documentation --target P256K --analyze --warnings-as-errors
7575
- name: Validate ZKP DocC

.github/workflows/benchmark-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: apt-get update && apt-get install -y libjemalloc-dev
2424

2525
- name: Checkout
26-
uses: actions/checkout@v6
26+
uses: actions/checkout@v7
2727

2828
- name: Run benchmarks
2929
working-directory: Projects

.github/workflows/benchmark-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
DEBIAN_FRONTEND: noninteractive
2828

2929
- name: Checkout PR branch
30-
uses: actions/checkout@v6
30+
uses: actions/checkout@v7
3131

3232
- name: Mark workspace safe for git
3333
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"

.github/workflows/check-subtree-updates.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
env:
1616
GH_TOKEN: ${{ secrets.BOT_TOKEN }}
1717
steps:
18-
- uses: actions/checkout@v6
18+
- uses: actions/checkout@v7
1919

2020
- name: Download subtree binary
2121
run: |

.github/workflows/docc-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
DEVELOPER_DIR: "/Applications/Xcode_26.4.app/Contents/Developer"
3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
32+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
3333
with:
3434
ref: ${{ github.event.inputs.release_tag || github.ref }}
3535
fetch-depth: 0 # ensure tags are fetched so we can delete them below

.github/workflows/docker-builds.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ jobs:
1111
name: Linux
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v6
14+
- uses: actions/checkout@v7
1515
- name: Build and test
1616
run: docker build .
1717

1818
wasm:
1919
name: WebAssembly
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v6
22+
- uses: actions/checkout@v7
2323
- name: Build for WebAssembly
2424
run: |
2525
docker run --pull=always --rm -v "$PWD:/workspace" -w /workspace \
@@ -37,7 +37,7 @@ jobs:
3737
name: Android
3838
runs-on: ubuntu-latest
3939
steps:
40-
- uses: actions/checkout@v6
40+
- uses: actions/checkout@v7
4141
- name: Build for Android
4242
run: |
4343
docker run --pull=always --rm -v "$PWD:/workspace" -w /workspace \

.github/workflows/update-subtree.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
env:
1919
GH_TOKEN: ${{ secrets.BOT_TOKEN }}
2020
steps:
21-
- uses: actions/checkout@v6
21+
- uses: actions/checkout@v7
2222
with:
2323
fetch-depth: 0
2424
token: ${{ secrets.BOT_TOKEN }}

.github/workflows/xcframework-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v6
13+
uses: actions/checkout@v7
1414
- name: Enable development dependencies
1515
env:
1616
TAG_NAME: ${{ github.ref_name }}

0 commit comments

Comments
 (0)