From ea9a459f6d6d95c8bc2329211f0644a061981356 Mon Sep 17 00:00:00 2001 From: chvancooten Date: Sun, 16 Jun 2024 19:02:19 +0200 Subject: [PATCH] Bump deprecated CI/CD actions --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2ccfa4c..03c8bd9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code into workspace directory - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build Docker container run: docker build . -t nimplant @@ -22,7 +22,7 @@ jobs: docker save nimplant:latest | gzip > nimplant.tar.gz - name: Upload Docker image artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: nimplant-image path: nimplant.tar.gz @@ -41,10 +41,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code into workspace directory - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Download Docker image artifact - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: nimplant-image @@ -59,7 +59,7 @@ jobs: run: docker run -v ${PWD}:/nimplant nimplant /bin/bash -c "python3 ./nimplant.py compile all ${{ matrix.language }}" - name: Check if all files compiled correctly for ${{ matrix.language }} - uses: andstor/file-existence-action@v2 + uses: andstor/file-existence-action@v3 with: fail: true files: ${{ matrix.paths }} \ No newline at end of file