Skip to content
Merged
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 action-validator/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ runs:
steps:
- name: Cache
id: cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: /usr/local/bin/action-validator
key: action-validator-${{ inputs.version }}
Expand Down
2 changes: 1 addition & 1 deletion actionlint/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ runs:
steps:
- name: Cache
id: cache
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: /usr/local/bin/actionlint
key: actionlint-${{ inputs.version }}
Expand Down
2 changes: 1 addition & 1 deletion auto-tagger/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ runs:

- name: Push tag
if: inputs.auto_tag_always == 'true' || (github.event.action == 'closed' && github.event.pull_request.merged)
uses: octokit/request-action@v2.x
uses: octokit/request-action@v3.x
with:
route: POST /repos/:repository/git/refs
repository: ${{ github.repository }}
Expand Down
2 changes: 1 addition & 1 deletion editorconfig-checker/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ runs:
steps:
- name: Cache Editorconfig-Checker binary
id: cache
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: /usr/local/bin/editorconfig-checker
key: EditorConfig-Checker-${{ inputs.version }}
Expand Down
2 changes: 1 addition & 1 deletion prettier/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runs:
using: "composite"
steps:
- name: Cache Prettier
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ~/.npm
key: prettier-${{ inputs.version }}-${{ runner.os }}-${{ runner.arch }}
Expand Down
2 changes: 1 addition & 1 deletion shellcheck/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ runs:
steps:
- name: Cache ShellCheck binary
id: cache
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: /usr/local/bin/shellcheck
key: shellcheck-${{ inputs.version }}
Expand Down