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
6 changes: 3 additions & 3 deletions .github/workflows/go-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
name: Run golangci-lint
runs-on: ubuntu-latest # ref. https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: DEBUG
shell: bash
run: |
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
# Setup versenv
direnv allow ${{ env.WORKDIR }}
make versenv
- uses: actions/setup-go@v5 # ref. https://github.com/actions/setup-go#usage
- uses: actions/setup-go@v6 # ref. https://github.com/actions/setup-go#usage
id: setup-go
with:
cache: false
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
if [ -n "${GITHUB_TOKEN-}" ]; then
direnv exec . bash -Eeux -o pipefail -c 'echo "${GOPRIVATE:-}${GOPRIVATE+,}" | while read -d , -r LINE; do echo "set git config: ${LINE}"; git config --global url."https://${GITHUB_TOKEN}:x-oauth-basic@${LINE}".insteadOf "https://${LINE}"; done'
fi
- uses: golangci/golangci-lint-action@v6.0.1 # ref. https://github.com/golangci/golangci-lint-action#how-to-use
- uses: golangci/golangci-lint-action@v8.0.0 # ref. https://github.com/golangci/golangci-lint-action#how-to-use
with:
working-directory: ${{ env.WORKDIR }}
args: --timeout=600s
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/go-mod-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
contents: write
runs-on: ubuntu-latest # ref. https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.head.ref }} # needed for gh pr view
- name: DEBUG
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
# Setup versenv
direnv allow ${{ env.WORKDIR }}
make versenv
- uses: actions/setup-go@v5 # ref. https://github.com/actions/setup-go#usage
- uses: actions/setup-go@v6 # ref. https://github.com/actions/setup-go#usage
id: setup-go
with:
cache: false
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/go-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
name: Run go test
runs-on: ubuntu-latest # ref. https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: DEBUG
shell: bash
run: |
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
# Setup versenv
direnv allow ${{ env.WORKDIR }}
make versenv
- uses: actions/setup-go@v5 # ref. https://github.com/actions/setup-go#usage
- uses: actions/setup-go@v6 # ref. https://github.com/actions/setup-go#usage
id: setup-go
with:
cache: false
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
set -Eeu -o pipefail -x
direnv allow .
direnv exec . make test
- uses: codecov/codecov-action@v4 # ref. https://github.com/codecov/codecov-action#example-workflowyml-with-codecov-action
- uses: codecov/codecov-action@v5 # ref. https://github.com/codecov/codecov-action#example-workflowyml-with-codecov-action
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ${{ env.WORKDIR }}/coverage.txt
2 changes: 1 addition & 1 deletion .github/workflows/label-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
checks: read
repository-projects: read
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ github.event.pull_request.head.ref }} # needed for gh pr view
- name: Check labels
Expand Down
Loading