Skip to content

Commit 217f928

Browse files
fix(ci): add cleanup step into job dist (#13801)
Signed-off-by: Vladyslav Diachenko <vlad.diachenko@grafana.com>
1 parent 00e686d commit 217f928

File tree

6 files changed

+12
-3
lines changed

6 files changed

+12
-3
lines changed

‎.github/jsonnetfile.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"subdir": "workflows"
99
}
1010
},
11-
"version": "adca1c07a2199374e1646e62331926509699368b"
11+
"version": "87cb5090c36b5332e7f21b5c59e136962d5f4f56"
1212
}
1313
],
1414
"legacyImports": true

‎.github/jsonnetfile.lock.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"subdir": "workflows"
99
}
1010
},
11-
"version": "adca1c07a2199374e1646e62331926509699368b",
12-
"sum": "/6NMt3DFr1mpaBxncbwBJVV5vBpAMIyP3XNOoFArz5Q="
11+
"version": "87cb5090c36b5332e7f21b5c59e136962d5f4f56",
12+
"sum": "kVlVZPpPz8d/D6UGK9Hto+NeGy7z8NvGygcB1QboxWw="
1313
}
1414
],
1515
"legacyImports": false

‎.github/vendor/github.com/grafana/loki-release/workflows/build.libsonnet

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎.github/vendor/github.com/grafana/loki-release/workflows/common.libsonnet

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎.github/workflows/minor-release-pr.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ jobs:
101101
version: "${{ needs.version.outputs.version }}"
102102
runs-on: "ubuntu-latest"
103103
steps:
104+
- name: "clean up build tools cache"
105+
run: "rm -rf /opt/hostedtoolcache"
104106
- name: "pull code to release"
105107
uses: "actions/checkout@v4"
106108
with:

‎.github/workflows/patch-release-pr.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ jobs:
101101
version: "${{ needs.version.outputs.version }}"
102102
runs-on: "ubuntu-latest"
103103
steps:
104+
- name: "clean up build tools cache"
105+
run: "rm -rf /opt/hostedtoolcache"
104106
- name: "pull code to release"
105107
uses: "actions/checkout@v4"
106108
with:

0 commit comments

Comments
 (0)