Skip to content

Commit

Permalink
ci/cd(deps): bump actions/setup-go from 4 to 5
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilsk committed Jan 30, 2023
1 parent 2f2c9af commit 52fcc2f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with: { fetch-depth: 0 }
- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with: { go-version: '1.21', cache: true }

- uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.healthcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
uses: actions/checkout@v4
with: { fetch-depth: 0 }
- name: Set up Go environment
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with: { go-version: '${{ matrix.go }}' }

- name: Prepare and run tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: actions/checkout@v4
with: { fetch-depth: 0 }
- name: Set up Go environment
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with: { go-version: 1.21.x, cache-dependency-path: tools/go.sum }

- name: Prepare and run linter
Expand All @@ -56,7 +56,7 @@ jobs:
uses: actions/checkout@v4
with: { fetch-depth: 0 }
- name: Set up Go environment
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with: { go-version: '${{ matrix.go }}' }

- name: Prepare and run tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
uses: actions/checkout@v4
with: { fetch-depth: 0 }
- name: Set up Go environment
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with: { go-version: 1.21.x, cache-dependency-path: tools/go.sum }

- name: Install and check tools
Expand Down

0 comments on commit 52fcc2f

Please sign in to comment.