Skip to content

Commit d4a28b6

Browse files
chore(deps): pin dependencies (#13237)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/cache](https://redirect.github.com/actions/cache) | action | pinDigest | → `27d5ce7` | | [actions/checkout](https://redirect.github.com/actions/checkout) | action | pinDigest | → `de0fac2` | | [actions/create-github-app-token](https://redirect.github.com/actions/create-github-app-token) | action | pinDigest | → `d72941d` | | [actions/github-script](https://redirect.github.com/actions/github-script) | action | pinDigest | → `ed59741` | | [actions/setup-node](https://redirect.github.com/actions/setup-node) | action | pinDigest | → `48b55a0` | | [actions/stale](https://redirect.github.com/actions/stale) | action | pinDigest | → `b5d41d4` | | [actions/upload-artifact](https://redirect.github.com/actions/upload-artifact) | action | pinDigest | → `b7c566a` | | [andresz1/size-limit-action](https://redirect.github.com/andresz1/size-limit-action) | action | pinDigest | → `e7493a7` | | [benc-uk/workflow-dispatch](https://redirect.github.com/benc-uk/workflow-dispatch) | action | pinDigest | → `7a02764` | | [dessant/lock-threads](https://redirect.github.com/dessant/lock-threads) | action | pinDigest | → `7266a7c` | | [karpikpl/list-changed-files-action](https://redirect.github.com/karpikpl/list-changed-files-action) | action | pinDigest | → `18aa81a` | | [restackio/update-json-file-action](https://redirect.github.com/restackio/update-json-file-action) | action | pinDigest | → `6f50afe` | | [stefanzweifel/git-auto-commit-action](https://redirect.github.com/stefanzweifel/git-auto-commit-action) | action | pinDigest | → `04702ed` | --- > [!WARNING] > Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/11062) for more information. --- ### Configuration 📅 **Schedule**: (in timezone America/Los_Angeles) - Branch creation - "every weekend" - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/apollographql/apollo-client). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xNzMuNiIsInVwZGF0ZWRJblZlciI6IjQzLjE3My42IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyI6Y2hyaXN0bWFzX3RyZWU6IGRlcGVuZGVuY2llcyJdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent c1f39cf commit d4a28b6

16 files changed

Lines changed: 41 additions & 41 deletions

.github/workflows/api-extractor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout repo
12-
uses: actions/checkout@v6
12+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1313

1414
- name: Setup Node.js
15-
uses: actions/setup-node@v6
15+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
1616
with:
1717
node-version: ">=23.6.0"
1818

.github/workflows/arethetypeswrong.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout repo
16-
uses: actions/checkout@v6
16+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1717
- name: Setup Node.js
18-
uses: actions/setup-node@v6
18+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
1919
with:
2020
node-version: ">=23.6.0"
2121
- name: Install dependencies (with cache)

.github/workflows/change-prerelease-tag.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
contents: write
2424

2525
steps:
26-
- uses: actions/create-github-app-token@v1
26+
- uses: actions/create-github-app-token@d72941d797fd3113feb6b93fd0dec494b13a2547 # v1
2727
id: github-actions-bot-app-token
2828
with:
2929
app-id: 819772
@@ -32,7 +32,7 @@ jobs:
3232
# Check out the repository, using the Github Actions Bot app's token so
3333
# that we can push later.
3434
- name: Checkout repo
35-
uses: actions/checkout@v6
35+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3636
with:
3737
token: ${{ steps.github-actions-bot-app-token.outputs.token }}
3838
# Checkout release branch entered when workflow was kicked off
@@ -42,7 +42,7 @@ jobs:
4242
fetch-depth: 0
4343

4444
- name: Setup Node.js
45-
uses: actions/setup-node@v6
45+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
4646
with:
4747
node-version: ">=23.6.0"
4848

@@ -53,7 +53,7 @@ jobs:
5353
npm i
5454
5555
- name: Update prerelease tag in .changeset/pre.json
56-
uses: restackio/update-json-file-action@2.1
56+
uses: restackio/update-json-file-action@6f50afee9a03a456a30cd574123db793319f7544 # 2.1
5757
with:
5858
file: .changeset/pre.json
5959
fields: '{"tag": "${{github.event.inputs.tag}}"}'

.github/workflows/cleanup-checks.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout repo
19-
uses: actions/checkout@v6
19+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2020
- name: add label
21-
uses: actions/github-script@v8.0.0
21+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
2222
with:
2323
script: |
2424
const script = (await import('${{ github.workspace }}/.github/workflows/cleanup-checks.mjs')).setup({context,core,github,exec,glob,io})
@@ -31,10 +31,10 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: Checkout repo
34-
uses: actions/checkout@v6
34+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3535

3636
- name: Setup Node.js
37-
uses: actions/setup-node@v6
37+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
3838
with:
3939
node-version: ">=23.6.0"
4040

@@ -56,7 +56,7 @@ jobs:
5656
run: npm run update-size-limits
5757

5858
- name: Commit changes back
59-
uses: stefanzweifel/git-auto-commit-action@v7
59+
uses: stefanzweifel/git-auto-commit-action@04702edda442b2e678b25b537cec683a1493fcb9 # v7
6060
with:
6161
commit_message: "Clean up Prettier, Size-limit, and Api-Extractor"
6262
push_options: ""

.github/workflows/close-stale-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Close Stale Issues
23-
uses: actions/stale@v10.2.0
23+
uses: actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f # v10.2.0
2424
with:
2525
# # Token for the repository. Can be passed in using `{{ secrets.GITHUB_TOKEN }}`.
2626
# repo-token: # optional, default is ${{ github.token }}

.github/workflows/compare-build-output.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout repo
13-
uses: actions/checkout@v6
13+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1414
with:
1515
# Fetch entire git history so we have the parent commit to compare against
1616
fetch-depth: 0
1717
- name: Setup Node.js
18-
uses: actions/setup-node@v6
18+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
1919
with:
2020
node-version: ">=23.6.0"
2121
- name: Install dependencies (with cache)

.github/workflows/copilot-setup-steps.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ jobs:
2626
# If you do not check out your code, Copilot will do this for you.
2727
steps:
2828
- name: Checkout code
29-
uses: actions/checkout@v6
29+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3030

3131
- name: Setup Node.js
32-
uses: actions/setup-node@v6
32+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
3333
with:
3434
node-version: "24.x"
3535

@@ -42,7 +42,7 @@ jobs:
4242
4343
- name: Cache downloaded skills and instructions
4444
id: cache-skills
45-
uses: actions/cache@v5
45+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
4646
with:
4747
path: |
4848
.github/instructions/docs.instructions.md

.github/workflows/devtools-errorcodes.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ jobs:
99
dispatch:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/create-github-app-token@v1
12+
- uses: actions/create-github-app-token@d72941d797fd3113feb6b93fd0dec494b13a2547 # v1
1313
id: github-actions-bot-app-token
1414
with:
1515
app-id: 819772
1616
private-key: ${{ secrets.APOLLO_GITHUB_ACTIONS_BOT_PRIVATE_KEY }}
1717
repositories: apollo-client-devtools
18-
- uses: benc-uk/workflow-dispatch@v1
18+
- uses: benc-uk/workflow-dispatch@7a027648b88c2413826b6ddd6c76114894dc5ec4 # v1
1919
with:
2020
workflow: update-errorcodes.yml
2121
repo: apollographql/apollo-client-devtools

.github/workflows/docmodel.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout repo
12-
uses: actions/checkout@v6
12+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1313

1414
- name: Setup Node.js
15-
uses: actions/setup-node@v6
15+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
1616
with:
1717
node-version: ">=23.6.0"
1818

@@ -23,7 +23,7 @@ jobs:
2323
run: npm run docmodel
2424

2525
- name: Upload documentation model artifact
26-
uses: actions/upload-artifact@v6
26+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6
2727
with:
2828
name: client-api-documentation
2929
path: docs/public/client.api.json

.github/workflows/exit-prerelease.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
contents: write
1919

2020
steps:
21-
- uses: actions/create-github-app-token@v1
21+
- uses: actions/create-github-app-token@d72941d797fd3113feb6b93fd0dec494b13a2547 # v1
2222
id: github-actions-bot-app-token
2323
with:
2424
app-id: 819772
@@ -27,7 +27,7 @@ jobs:
2727
# Check out the repository, using the Github Actions Bot app's token so
2828
# that we can push later.
2929
- name: Checkout repo
30-
uses: actions/checkout@v6
30+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3131
with:
3232
token: ${{ steps.github-actions-bot-app-token.outputs.token }}
3333
# Checkout release branch entered when workflow was kicked off
@@ -37,7 +37,7 @@ jobs:
3737
fetch-depth: 0
3838

3939
- name: Setup Node.js
40-
uses: actions/setup-node@v6
40+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
4141
with:
4242
node-version: ">=23.6.0"
4343

0 commit comments

Comments
 (0)