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
3 changes: 2 additions & 1 deletion .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout code"
uses: actions/checkout@v4.2.2
# v6.0.2
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
# Fetch all history for all tags and branches
fetch-depth: 0
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout code"
uses: actions/checkout@v4.2.2
# v6.0.2
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
# Fetch all history for all tags and branches
fetch-depth: 0
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/sanity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ jobs:
go-version: ${{ matrix.go-version }}
cache: false
- name: "checkout code"
uses: actions/checkout@v4.2.2
# v6.0.2
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
# Fetch all history for all tags and branches
fetch-depth: 0
Expand Down Expand Up @@ -105,7 +106,8 @@ jobs:
go-version: ${{ matrix.go-version }}
cache: false
- name: "checkout code"
uses: actions/checkout@v4.2.2
# v6.0.2
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: "test JSON config files"
run: |
set -euxo pipefail
Expand All @@ -127,7 +129,8 @@ jobs:
go-version: ${{ matrix.go-version }}
cache: false
- name: "Checkout repository"
uses: actions/checkout@v4.2.2
# v6.0.2
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- if: ${{ matrix.os == 'ubuntu-latest' }}
name: Install shellcheck on Ubuntu
run: |
Expand Down
Loading