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/actions/build-for-integrations/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ runs:

- name: Cache Build
id: step-cache-build
uses: actions/cache@v5.0.3
uses: actions/cache@v5.0.4
with:
key: ${{ steps.cache-key.outputs.value }}
path: ${{ steps.cache-path.outputs.value }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/build/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ runs:

- name: Cache Build
id: step-cache-build
uses: actions/cache@v5.0.3
uses: actions/cache@v5.0.4
with:
key: ${{ steps.cache-key.outputs.value }}
path: ${{ steps.cache-path.outputs.value }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/pr/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ runs:

- id: generate-token
if: env.git_status == 'dirty'
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf #v2.2.1
uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 #v3.0.0
with:
app-id: ${{ inputs.app_id }}
private-key: ${{ inputs.app_private_key }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/setup-node/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ runs:
using: 'composite'
steps:
- name: Setup pnpm
uses: pnpm/action-setup@v4
uses: pnpm/action-setup@v5

- name: Use Node.js ${{ inputs.node-version }}
uses: actions/setup-node@v6.3.0
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/smoke-test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ runs:
shell: bash

- name: Restore CSpell cache
uses: actions/cache@v5.0.3
uses: actions/cache@v5.0.4
if: ${{ inputs.use_cspell_cache == 'true' }}
with:
key: cspell-cache-${{ runner.os }}-smoke-test-${{ hashFiles('**/*.ts', '**/*.md') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:

- name: Upload coverage to Codecov
id: codecov
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
uses: codecov/codecov-action@1af58845a975a7985b0beb0cbe6fbbb71a41dbad # v5.5.3
continue-on-error: true
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cspell-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- run: pnpm build:prod

- name: Restore CSpell cache
uses: actions/cache@v5.0.3
uses: actions/cache@v5.0.4
with:
key: cspell-cache-v2-${{ runner.os }}-${{ hashFiles('**/*.ts', '**/*.md') }}
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ jobs:

- name: Cache Integration Run
id: step-cache-run
uses: actions/cache@v5.0.3
uses: actions/cache@v5.0.4
with:
key: integration-run--${{ env.REF_BRANCH }}-${{ steps.repo-hash.outputs.value }}-${{ fromJSON(steps.step-repo-info.outputs.repo-info).commit }}-1
# Store the patch files to update the integration perf data
Expand All @@ -190,7 +190,7 @@ jobs:

- name: Cache Integration Test Repository Files
if: ${{ steps.step-cache-run.outputs.cache-hit != 'true' }}
uses: actions/cache@v5.0.3
uses: actions/cache@v5.0.4
with:
key: int-repo-temp-files-${{ matrix.repo }}-${{ fromJSON(steps.step-repo-info.outputs.repo-info).commit }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:
# Drafts your next Release notes as Pull Requests are merged into "master"
- id: release-drafter-labeler
uses: release-drafter/release-drafter@6a93d829887aa2e0748befe2e808c66c0ec6e4c7 # v5
uses: release-drafter/release-drafter@139054aeaa9adc52ab36ddf67437541f039b88e2 # v5
# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml
# with:
# config-name: my-config.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
steps:
# Drafts your next Release notes as Pull Requests are merged into "main"
- id: release-drafter
uses: release-drafter/release-drafter@6a93d829887aa2e0748befe2e808c66c0ec6e4c7 # v5
uses: release-drafter/release-drafter@139054aeaa9adc52ab36ddf67437541f039b88e2 # v5
# (Optional) specify config name to use, relative to .github/. Default: release-drafter.yml
# with:
# config-name: my-config.yml
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/update-dictionaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ jobs:

- name: Cache Build
id: step-cache-build
uses: actions/cache@v5.0.3
uses: actions/cache@v5.0.4
with:
key: ${{ needs.build.outputs.key }}
path: ${{ needs.build.outputs.path }}
Expand Down Expand Up @@ -199,7 +199,7 @@ jobs:
echo "repo-info=$(jq -c '.repositories[] | select(.path == "${{ matrix.repo }}")' integration-tests/config/config.json)" >> $GITHUB_OUTPUT

- name: Cache Integration Test Repository Files
uses: actions/cache@v5.0.3
uses: actions/cache@v5.0.4
with:
key: int-repo-temp-files-${{ matrix.repo }}-${{ fromJSON(steps.step-repo-info.outputs.repo-info).commit }}
path: |
Expand Down Expand Up @@ -339,7 +339,7 @@ jobs:
title: Update Dictionaries (${{ env.REF_BRANCH }})

- id: generate-token
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf #v2.2.1
uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 #v3.0.0
with:
app-id: ${{ secrets.AUTOMATION_APP_ID }}
private-key: ${{ secrets.AUTOMATION_PRIVATE_KEY }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-integration-repositories.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:

- name: Cache Build
id: step-cache-build
uses: actions/cache@v5.0.3
uses: actions/cache@v5.0.4
with:
key: ${{ needs.build.outputs.key }}
path: ${{ needs.build.outputs.path }}
Expand Down
Loading