diff --git a/.github/workflows/publish-container.yml b/.github/workflows/publish-container.yml index 418c900..30dea40 100644 --- a/.github/workflows/publish-container.yml +++ b/.github/workflows/publish-container.yml @@ -57,7 +57,7 @@ jobs: steps: - name: โคต๏ธ Checkout Repository - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v6.0.2 - name: โ” Check for Relevant File Changes id: changes @@ -95,7 +95,7 @@ jobs: - name: ๐Ÿ— Cache Docker Layers if: steps.build_decision.outputs.should_build == 'true' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /tmp/.buildx-cache key: buildx-${{ runner.os }}-${{ matrix.path }}-${{ github.sha }} @@ -104,14 +104,14 @@ jobs: - name: ๐Ÿ” Log into docker.io Registry if: steps.build_decision.outputs.should_build == 'true' && github.event_name != 'pull_request' - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: mm25zamanian password: ${{ secrets.DOCKER_HUB_TOKEN }} - name: ๐Ÿ” Log into ghcr.io Registry if: steps.build_decision.outputs.should_build == 'true' && github.event_name != 'pull_request' - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ env.REGISTRY_USER }} diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml index 2cd3369..b1d5df1 100644 --- a/.github/workflows/sync-labels.yml +++ b/.github/workflows/sync-labels.yml @@ -22,7 +22,7 @@ jobs: steps: - name: โคต๏ธ Check out code from GitHub - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v6.0.2 - name: ๐Ÿš€ Run Label Syncer uses: micnncim/action-label-syncer@v1.3.0