Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
id-token: write # required for signing with cosign
steps:
- name: Check out the repo
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
Expand All @@ -73,7 +73,7 @@ jobs:

- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
push: true
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/test_image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ jobs:
runs-on: ubuntu-latest
permissions:
contents: read # required for actions/checkout
packages: write # required for pushing the test image to ghcr.io
steps:
- name: Check out the repo
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ github.sha }} # required for better experience using pre-releases
fetch-depth: "0" # Required due to the way Git works, without it this action won't be able to find any or the correct tags
Expand All @@ -38,13 +39,13 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build Docker image
- name: Build Docker image and test push action
id: build-to-test
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
load: true
push: false
push: true
tags: |
ghcr.io/sysdiglabs/sysdig-mcp-server:test

Expand Down