diff --git a/.github/workflows/linux-ci.yml b/.github/workflows/linux-ci.yml index c20c452a..063f686d 100644 --- a/.github/workflows/linux-ci.yml +++ b/.github/workflows/linux-ci.yml @@ -10,10 +10,10 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Check out repository code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v4 with: go-version-file: "go.mod" diff --git a/.github/workflows/windows-ci.yml b/.github/workflows/windows-ci.yml index 0165ba8a..55469016 100644 --- a/.github/workflows/windows-ci.yml +++ b/.github/workflows/windows-ci.yml @@ -10,12 +10,12 @@ jobs: runs-on: windows-2022 steps: - name: Check out repository code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v4 with: - go-version-file: 'go.mod' + go-version-file: "go.mod" - run: go build - run: go test -timeout 30s ./...