diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 08c8887..d803ad7 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -21,7 +21,7 @@ jobs: - name: Cache Go id: module-cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /home/runner/go/pkg/mod key: go-pkg-mod-${{ runner.os }}-${{ hashFiles('**/go.sum') }} @@ -32,7 +32,7 @@ jobs: - name: Cache Tools id: tool-cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /home/runner/go/bin key: tools-${{ runner.os }}-${{ hashFiles('./internal/tools/go.mod') }} @@ -55,14 +55,14 @@ jobs: - name: Cache Go id: module-cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /home/runner/go/pkg/mod key: go-pkg-mod-${{ runner.os }}-${{ hashFiles('**/go.sum') }} - name: Cache Tools id: tool-cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /home/runner/go/bin key: tools-${{ runner.os }}-${{ hashFiles('./internal/tools/go.mod') }} @@ -84,14 +84,14 @@ jobs: - name: Cache Go id: module-cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /home/runner/go/pkg/mod key: go-pkg-mod-${{ runner.os }}-${{ hashFiles('**/go.sum') }} - name: Cache Tools id: tool-cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /home/runner/go/bin key: tools-${{ runner.os }}-${{ hashFiles('./internal/tools/go.mod') }} @@ -113,14 +113,14 @@ jobs: - name: Cache Go id: module-cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /home/runner/go/pkg/mod key: go-pkg-mod-${{ runner.os }}-${{ hashFiles('**/go.sum') }} - name: Cache Tools id: tool-cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /home/runner/go/bin key: tools-${{ runner.os }}-${{ hashFiles('./internal/tools/go.mod') }}