diff --git a/.github/workflows/build-push-charts.yml b/.github/workflows/build-push-charts.yml index cc4aafb..e5a50d7 100644 --- a/.github/workflows/build-push-charts.yml +++ b/.github/workflows/build-push-charts.yml @@ -22,7 +22,7 @@ jobs: chart-version: ${{ steps.semver.outputs.version }} steps: - name: Check out the repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} # This is important for the semver action to work correctly diff --git a/.github/workflows/build-push-images.yml b/.github/workflows/build-push-images.yml index 9a49138..d7448e9 100644 --- a/.github/workflows/build-push-images.yml +++ b/.github/workflows/build-push-images.yml @@ -26,12 +26,12 @@ jobs: security-events: write # required for pushing SARIF files steps: - name: Check out the repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} - name: Login to GitHub Container Registry - uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0 + uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0 with: registry: ghcr.io username: ${{ github.actor }} @@ -43,7 +43,7 @@ jobs: - name: Calculate metadata for image id: image-meta - uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0 + uses: docker/metadata-action@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 # v6.1.0 with: images: ghcr.io/stackhpc/azimuth-llm-${{ matrix.component }}-ui # Produce the branch name or tag and the SHA as tags diff --git a/.github/workflows/build-push-vllm-cpu.yml b/.github/workflows/build-push-vllm-cpu.yml index b8b0377..eb147da 100644 --- a/.github/workflows/build-push-vllm-cpu.yml +++ b/.github/workflows/build-push-vllm-cpu.yml @@ -24,13 +24,13 @@ jobs: security-events: write # required for pushing SARIF files steps: - name: Check out the vLLM repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: vllm-project/vllm ref: ${{ inputs.vllm_ref }} - name: Login to GitHub Container Registry - uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0 + uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0 with: registry: ghcr.io username: ${{ github.actor }} @@ -52,13 +52,13 @@ jobs: security-events: write # required for pushing SARIF files steps: - name: Check out the vLLM repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: vllm-project/vllm ref: ${{ inputs.vllm_ref }} - name: Login to GitHub Container Registry - uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0 + uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0 with: registry: ghcr.io username: ${{ github.actor }} diff --git a/.github/workflows/build-push-vllm-xpu.yml b/.github/workflows/build-push-vllm-xpu.yml index 8ea95c7..a93848c 100644 --- a/.github/workflows/build-push-vllm-xpu.yml +++ b/.github/workflows/build-push-vllm-xpu.yml @@ -24,13 +24,13 @@ jobs: security-events: write # required for pushing SARIF files steps: - name: Check out the vLLM repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: vllm-project/vllm ref: ${{ inputs.vllm_ref }} - name: Login to GitHub Container Registry - uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0 + uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0 with: registry: ghcr.io username: ${{ github.actor }} diff --git a/.github/workflows/test-pr.yml b/.github/workflows/test-pr.yml index 83cc216..dc43bbf 100644 --- a/.github/workflows/test-pr.yml +++ b/.github/workflows/test-pr.yml @@ -56,7 +56,7 @@ jobs: RELEASE_NAME: ci-test steps: - name: Checkout the repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ github.sha }} diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index 7a60ba0..983b297 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -11,7 +11,7 @@ jobs: pull-requests: write steps: - name: Checkout the config repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 fetch-tags: true @@ -61,7 +61,7 @@ jobs: - name: Create Pull Request if: ${{ steps.dependency_updates.outputs.new_vllm_tag }} - uses: peter-evans/create-pull-request@c0f553fe549906ede9cf27b5156039d195d2ece0 # v8.1.0 + uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1 with: base: main branch: update/vllm-${{ steps.dependency_updates.outputs.new_vllm_tag }}