Skip to content

Commit 3a5624f

Browse files
committed
build: Update actions versions and push test image
1 parent 0b77a90 commit 3a5624f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
id-token: write # required for signing with cosign
6363
steps:
6464
- name: Check out the repo
65-
uses: actions/checkout@v4
65+
uses: actions/checkout@v5
6666

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

7474
- name: Build and push Docker image
7575
id: build-and-push
76-
uses: docker/build-push-action@v5
76+
uses: docker/build-push-action@v6
7777
with:
7878
context: .
7979
push: true

.github/workflows/test_image.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
contents: read # required for actions/checkout
2727
steps:
2828
- name: Check out the repo
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030
with:
3131
ref: ${{ github.sha }} # required for better experience using pre-releases
3232
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
@@ -38,13 +38,13 @@ jobs:
3838
username: ${{ github.actor }}
3939
password: ${{ secrets.GITHUB_TOKEN }}
4040

41-
- name: Build Docker image
41+
- name: Build Docker image and test push action
4242
id: build-to-test
43-
uses: docker/build-push-action@v5
43+
uses: docker/build-push-action@v6
4444
with:
4545
context: .
4646
load: true
47-
push: false
47+
push: true
4848
tags: |
4949
ghcr.io/sysdiglabs/sysdig-mcp-server:test
5050

0 commit comments

Comments
 (0)