Skip to content

Commit

Permalink
fix(Action): bump version numbers and attempt fix running out of space
Browse files Browse the repository at this point in the history
  • Loading branch information
Yimura committed Feb 15, 2024
1 parent 2d438af commit 19ff823
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/build-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
-
name: Checkout source
uses: actions/checkout@v3
uses: actions/checkout@v4

-
name: Set up Docker Buildx
Expand All @@ -40,7 +40,7 @@ jobs:

-
name: Upload dependency
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.image }}
path: /tmp/${{ matrix.image }}.tar
Expand All @@ -56,22 +56,22 @@ jobs:
steps:
-
name: Checkout source
uses: actions/checkout@v3
uses: actions/checkout@v4

-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

-
name: Download hashcat dependency
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: hashcat
path: /tmp

-
name: Download wordlists dependency
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: wordlists
path: /tmp
Expand All @@ -84,6 +84,10 @@ jobs:
name: Load wordlists dependecy
run: docker load --input /tmp/wordlists.tar

-
name: Free disk space
run: rm -rf /tmp/*.tar

-
name: Login to ghcr.io
uses: docker/login-action@v2
Expand Down

0 comments on commit 19ff823

Please sign in to comment.