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
14 changes: 7 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0 # Avoid running against a shallow clone

- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
repository: ${{ github.event.pull_request.head.repo.full_name }} # We plan to run only against internal pull requests
ref: ${{ github.event.pull_request.head.ref }}
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Check out the source code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0 # Avoid running against a shallow clone

Expand All @@ -125,7 +125,7 @@ jobs:

steps:
- name: Check out the source code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0 # Avoid running against a shallow clone

Expand All @@ -151,7 +151,7 @@ jobs:

steps:
- name: Check out the source code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0 # Avoid running against a shallow clone

Expand All @@ -178,7 +178,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Check out the source code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Go
uses: actions/setup-go@v5
Expand Down Expand Up @@ -210,7 +210,7 @@ jobs:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0 # Avoid running against a shallow clone

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
name: PR - Shellcheck
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: ludeeus/action-shellcheck@master

- name: Run shellcheck
Expand All @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
name: PR - Actionlint
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- run: |
echo "::add-matcher::.github/actionlint-matcher.json"
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
Expand All @@ -41,7 +41,7 @@ jobs:
runs-on: ubuntu-latest
name: PR - Markdownlint
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Run markdownlint
uses: actionshub/markdownlint@v3.1.4

Expand All @@ -56,7 +56,7 @@ jobs:
# Optional: allow write access to checks to allow the action to annotate code in the PR.
checks: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down
Loading