Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
shell: bash
- name: Cache Go
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
\Users\runneradmin\go\pkg\mod
Expand Down
42 changes: 21 additions & 21 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ jobs:
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Cache Go
id: module-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
/home/runner/go/pkg/mod
key: v1-go-pkg-mod-${{ runner.os }}-${{ hashFiles('**/go.mod', '**/go.sum') }}
- name: Cache Tools
id: tool-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /home/runner/go/bin
key: v1-tools-${{ runner.os }}-${{ hashFiles('./internal/tools/go.mod') }}
Expand All @@ -57,19 +57,19 @@ jobs:
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Cache Go
id: module-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
/home/runner/go/pkg/mod
key: v1-go-pkg-mod-${{ runner.os }}-${{ hashFiles('**/go.mod', '**/go.sum') }}
- name: Cache Tools
id: tool-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /home/runner/go/bin
key: v1-tools-${{ runner.os }}-${{ hashFiles('./internal/tools/go.mod') }}
- name: Cache Build
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /home/runner/.cache/go-build
key: go-build-lint-${{ runner.os }}-${{ hashFiles('**/go.mod', '**/go.sum') }}
Expand All @@ -91,19 +91,19 @@ jobs:
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Cache Go
id: module-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
/home/runner/go/pkg/mod
key: v1-go-pkg-mod-${{ runner.os }}-${{ hashFiles('**/go.mod', '**/go.sum') }}
- name: Cache Tools
id: tool-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /home/runner/go/bin
key: v1-tools-${{ runner.os }}-${{ hashFiles('./internal/tools/go.mod') }}
- name: Cache Build
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /home/runner/.cache/go-build
key: go-build-lint-${{ runner.os }}-${{ hashFiles('**/go.mod', '**/go.sum') }}
Expand Down Expand Up @@ -135,19 +135,19 @@ jobs:
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Cache Go
id: module-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
/home/runner/go/pkg/mod
key: v1-go-pkg-mod-${{ runner.os }}-${{ hashFiles('**/go.mod', '**/go.sum') }}
- name: Cache Tools
id: tool-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /home/runner/go/bin
key: v1-tools-${{ runner.os }}-${{ hashFiles('./internal/tools/go.mod') }}
- name: Cache Build
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /home/runner/.cache/go-build
key: go-build-unittest-${{ runner.os }}-${{ hashFiles('**/go.mod', '**/go.sum') }}
Expand All @@ -169,14 +169,14 @@ jobs:
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Cache Go
id: module-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
/home/runner/go/pkg/mod
key: v1-go-pkg-mod-${{ runner.os }}-${{ hashFiles('**/go.mod', '**/go.sum') }}
- name: Cache Tools
id: tool-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /home/runner/go/bin
key: v1-tools-${{ runner.os }}-${{ hashFiles('./internal/tools/go.mod') }}
Expand All @@ -199,14 +199,14 @@ jobs:
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Cache Go
id: module-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
/home/runner/go/pkg/mod
key: v1-go-pkg-mod-${{ runner.os }}-${{ hashFiles('**/go.mod', '**/go.sum') }}
- name: Cache Tools
id: tool-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /home/runner/go/bin
key: v1-tools-${{ runner.os }}-${{ hashFiles('./internal/tools/go.mod') }}
Expand All @@ -228,14 +228,14 @@ jobs:
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Cache Go
id: module-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
/home/runner/go/pkg/mod
key: v1-go-pkg-mod-${{ runner.os }}-${{ hashFiles('**/go.mod', '**/go.sum') }}
- name: Cache Tools
id: tool-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /home/runner/go/bin
key: v1-tools-${{ runner.os }}-${{ hashFiles('./internal/tools/go.mod') }}
Expand Down Expand Up @@ -275,7 +275,7 @@ jobs:
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Cache Go
id: module-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
/home/runner/go/pkg/mod
Expand Down Expand Up @@ -346,7 +346,7 @@ jobs:
path: ./bin/
- name: Cache Wix
id: wix-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
"C:\Program Files (x86)\WiX Toolset v3.11"
Expand Down Expand Up @@ -403,7 +403,7 @@ jobs:
mkdir bin/ dist/
- name: Cache Tools
id: tool-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /home/runner/go/bin
key: v1-tools-${{ runner.os }}-${{ hashFiles('./internal/tools/go.mod') }}
Expand Down Expand Up @@ -462,7 +462,7 @@ jobs:
mkdir bin/ dist/
- name: Cache Tools
id: tool-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /home/runner/go/bin
key: v1-tools-${{ runner.os }}-${{ hashFiles('./internal/tools/go.mod') }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/load-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Cache Go
id: module-cache
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-go-modules
with:
Expand All @@ -34,7 +34,7 @@ jobs:
key: v1-go-pkg-mod-${{ runner.os }}-${{ hashFiles('**/go.mod', '**/go.sum') }}
- name: Cache Tools
id: tool-cache
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-tool-binaries
with:
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
uses: actions/checkout@v3
- name: Cache Tools
id: tool-cache
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-tool-binaries
with:
Expand All @@ -76,7 +76,7 @@ jobs:
- run: sudo chmod 0777 -R /opt
- name: Fluentbit Cache
id: fluentbit-cache
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-fluentbit
with:
Expand All @@ -98,7 +98,7 @@ jobs:
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Cache Go
id: module-cache
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-go-modules
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prometheus-compliance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v3
- name: Cache Tools
id: tool-cache
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-tool-binaries
with:
Expand All @@ -30,7 +30,7 @@ jobs:
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Cache Go
id: module-cache
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-go-modules
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/stability-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Cache Go
id: module-cache
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-go-modules
with:
Expand All @@ -34,7 +34,7 @@ jobs:
key: v1-go-pkg-mod-${{ runner.os }}-${{ hashFiles('**/go.mod', '**/go.sum') }}
- name: Cache Tools
id: tool-cache
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-tool-binaries
with:
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Cache Go
id: module-cache
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-go-modules
with:
Expand Down