-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #873 from openmeterio/fix-ci
ci: fix missing action
- Loading branch information
Showing
2 changed files
with
28 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -204,8 +204,20 @@ jobs: | |
runs-on: ${{ github.actor == 'dependabot[bot]' && 'ubuntu-latest' || 'ubuntu-latest-large' }} | ||
|
||
steps: | ||
- name: Free disk space | ||
uses: ./.github/actions/free-disk-space | ||
- name: Free Disk Space | ||
uses: jlumbroso/[email protected] | ||
with: | ||
# Runs quick, run rm in background | ||
tool-cache: true | ||
|
||
# These run slower as use apt to uninstall packages | ||
# Turned on by default, so we disable them | ||
android: false | ||
dotnet: false | ||
haskell: false | ||
large-packages: false | ||
docker-images: false | ||
swap-storage: false | ||
|
||
- name: Run pipeline | ||
uses: dagger/dagger-for-github@eba69b4dddb54eddfdb51a88eb7fd86957137630 # v5.4.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,8 +33,20 @@ jobs: | |
security-events: write | ||
|
||
steps: | ||
- name: Free disk space | ||
uses: ./.github/actions/free-disk-space | ||
- name: Free Disk Space | ||
uses: jlumbroso/[email protected] | ||
with: | ||
# Runs quick, run rm in background | ||
tool-cache: true | ||
|
||
# These run slower as use apt to uninstall packages | ||
# Turned on by default, so we disable them | ||
android: false | ||
dotnet: false | ||
haskell: false | ||
large-packages: false | ||
docker-images: false | ||
swap-storage: false | ||
|
||
- name: Run pipeline | ||
uses: dagger/dagger-for-github@eba69b4dddb54eddfdb51a88eb7fd86957137630 # v5.4.0 | ||
|