mirror of
https://github.com/labstack/echo.git
synced 2024-11-24 08:22:21 +02:00
CI: upgrade actions/checkout to v4 and actions/setup-go to v5 (#2584)
* CI: upgrade actions/checkout to v4 * CI: upgrade actions/setup-go to v5
This commit is contained in:
parent
b835498241
commit
f12fdb09cd
4
.github/workflows/checks.yml
vendored
4
.github/workflows/checks.yml
vendored
@ -21,10 +21,10 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up Go ${{ matrix.go }}
|
- name: Set up Go ${{ matrix.go }}
|
||||||
uses: actions/setup-go@v4
|
uses: actions/setup-go@v5
|
||||||
with:
|
with:
|
||||||
go-version: ${{ env.LATEST_GO_VERSION }}
|
go-version: ${{ env.LATEST_GO_VERSION }}
|
||||||
check-latest: true
|
check-latest: true
|
||||||
|
10
.github/workflows/echo.yml
vendored
10
.github/workflows/echo.yml
vendored
@ -30,10 +30,10 @@ jobs:
|
|||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Set up Go ${{ matrix.go }}
|
- name: Set up Go ${{ matrix.go }}
|
||||||
uses: actions/setup-go@v4
|
uses: actions/setup-go@v5
|
||||||
with:
|
with:
|
||||||
go-version: ${{ matrix.go }}
|
go-version: ${{ matrix.go }}
|
||||||
|
|
||||||
@ -53,18 +53,18 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Code (Previous)
|
- name: Checkout Code (Previous)
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.base_ref }}
|
ref: ${{ github.base_ref }}
|
||||||
path: previous
|
path: previous
|
||||||
|
|
||||||
- name: Checkout Code (New)
|
- name: Checkout Code (New)
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
path: new
|
path: new
|
||||||
|
|
||||||
- name: Set up Go ${{ matrix.go }}
|
- name: Set up Go ${{ matrix.go }}
|
||||||
uses: actions/setup-go@v4
|
uses: actions/setup-go@v5
|
||||||
with:
|
with:
|
||||||
go-version: ${{ env.LATEST_GO_VERSION }}
|
go-version: ${{ env.LATEST_GO_VERSION }}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user