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 .github/actions/gh-cache/delete/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ runs:
fi

- name: Checkout repository to temporary directory
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
token: ${{ inputs.token }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/gh-cache/restore/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ runs:
fi

- name: Checkout repository to temporary directory
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
token: ${{ inputs.token }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/gh-cache/save/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ runs:
fi

- name: Checkout repository to temporary directory
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
token: ${{ inputs.token }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Node
uses: actions/setup-node@v6
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
site: ['sites/site-with-errors']
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Ruby
uses: ruby/setup-ruby@89f90524b88a01fe6e0b732220432cc6142926af
uses: ruby/setup-ruby@9eb537ca036ebaed86729dcb9309076e4c5c3b74
with:
ruby-version: '3.4'
bundler-cache: true
Expand Down