diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 9e42b6c..220698f 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -21,7 +21,7 @@ jobs: contents: read steps: - name: Check out the repo - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Prepare id: prep run: | @@ -45,14 +45,14 @@ jobs: done - name: Login to GitHub Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and Push - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v5 with: allow: network.host push: ${{ github.event_name != 'pull_request' }}