Skip to content

Commit

Permalink
Update actions/setup-go action to v5
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and Roberto Santalla committed Dec 8, 2023
1 parent 6074372 commit 4f5bc57
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: 1.19.x
- name: Build with xk6
Expand All @@ -46,7 +46,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: 1.19.x
- name: Run unit tests
Expand All @@ -58,7 +58,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: 1.19.x
- name: Set golangci-lint environment
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
GO_VERSION=$(cat go.mod | grep -e "^go 1\.[0-9]*" | cut -d' ' -f 2)
echo "GO_VERSION=$GO_VERSION" >> $GITHUB_ENV
- name: Install Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Install xk6 (k6 extension builder)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-core-deps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
BRANCH_NAME: ci-sync-deps
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version: "1.21"
- name: Sync dependencies
Expand Down

0 comments on commit 4f5bc57

Please sign in to comment.