Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
steps:
# https://github.com/actions/checkout
- name: Checkout
uses: actions/checkout@v7.0.0
uses: actions/checkout@v7.0.1
with:
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/excel_inbox.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
# ── Checkout ─────────────────────────────────────────────────────────────

- name: Check out PR branch (fork-safe)
uses: actions/checkout@v7.0.0
uses: actions/checkout@v7.0.1
with:
# Contributor's branch — only read here; write-back is in the finish job.
repository: ${{ github.event.pull_request.head.repo.full_name }}
Expand All @@ -88,7 +88,7 @@ jobs:
- name: Check out main branch into _main_branch/
# Always run OUR scripts from main — never from the PR.
# This is the key security boundary for pull_request_target.
uses: actions/checkout@v7.0.0
uses: actions/checkout@v7.0.1
with:
ref: main
path: _main_branch
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
- name: Check out main branch
# Run the test suite against the main-branch project with the modified
# schema injected from the artifact.
uses: actions/checkout@v7.0.0
uses: actions/checkout@v7.0.1
with:
ref: main
fetch-depth: 1
Expand Down Expand Up @@ -267,7 +267,7 @@ jobs:
# ── Checkout ─────────────────────────────────────────────────────────────

- name: Check out PR branch (fork-safe)
uses: actions/checkout@v7.0.0
uses: actions/checkout@v7.0.1
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
Expand All @@ -277,7 +277,7 @@ jobs:
allow-unsafe-pr-checkout: true

- name: Check out main branch into _main_branch/
uses: actions/checkout@v7.0.0
uses: actions/checkout@v7.0.1
with:
ref: main
path: _main_branch
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

# https://github.com/actions/checkout
- name: Check out repository
uses: actions/checkout@v7.0.0
uses: actions/checkout@v7.0.1
with:
persist-credentials: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_pages_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
steps:
# https://github.com/actions/checkout
- name: Checkout
uses: actions/checkout@v7.0.0
uses: actions/checkout@v7.0.1
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_excel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
steps:

- name: Check out repository
uses: actions/checkout@v7.0.0
uses: actions/checkout@v7.0.1
with:
# Use a token with write access so the commit push works.
# GITHUB_TOKEN is sufficient for same-repo pushes.
Expand Down
Loading