We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbfe0b2 commit 350cb28Copy full SHA for 350cb28
.github/workflows/create-release.yaml
@@ -9,8 +9,18 @@ permissions:
9
10
jobs:
11
create-release:
12
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-22.04
13
steps:
14
+ - name: Cleanup disk
15
+ run: |
16
+ # Cleaning up unused tools based on the suggested workaround:
17
+ # https://github.com/actions/runner-images/issues/2840#issuecomment-790492173
18
+
19
+ # Partial cleanup from the suggested workaround.
20
+ # If we continue running out of space, we can remove everything listed in the workaround.
21
+ sudo rm -rf /usr/share/dotnet
22
+ sudo rm -rf "$AGENT_TOOLSDIRECTORY"
23
24
- name: Harden Runner
25
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1
26
with:
0 commit comments