diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 8f78097..303361f 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -12,16 +12,16 @@ jobs: steps: - name: Check out repo - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Log in to Docker Hub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Login to GitHub Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} @@ -29,7 +29,7 @@ jobs: - name: Cache last built versions id: cache-build-versions - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | last_master @@ -38,8 +38,8 @@ jobs: - name: Install curl and jq run: | - sudo apt-get install curl jq + sudo apt-get install curl jq -y - name: Run build script run: | - bash build.sh \ No newline at end of file + bash -x build.sh \ No newline at end of file