Skip to content

Commit

Permalink
CI: upgrade actions/checkout to v4 and actions/setup-go to v5 (#2584)
Browse files Browse the repository at this point in the history
* CI: upgrade actions/checkout to v4
* CI: upgrade actions/setup-go to v5
  • Loading branch information
aldas committed Jan 28, 2024
1 parent b835498 commit f12fdb0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/checks.yml
Expand Up @@ -21,10 +21,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: ${{ env.LATEST_GO_VERSION }}
check-latest: true
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/echo.yml
Expand Up @@ -30,10 +30,10 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}

Expand All @@ -53,18 +53,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code (Previous)
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.base_ref }}
path: previous

- name: Checkout Code (New)
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: new

- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: ${{ env.LATEST_GO_VERSION }}

Expand Down

0 comments on commit f12fdb0

Please sign in to comment.