Skip to content

Commit 491e1d5

Browse files
committed
updated workflow actions
1 parent 9738eb3 commit 491e1d5

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

.github/workflows/build_container.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313

14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515

1616
- id: get-tags
1717
run: |
@@ -29,26 +29,26 @@ jobs:
2929
TAGSCSV=$(printf '%s,' "${TAGS[@]}")
3030
echo "tags=${TAGSCSV:0:-1}" >> $GITHUB_OUTPUT
3131
32-
- uses: docker/setup-qemu-action@v2
32+
- uses: docker/setup-qemu-action@v3
3333
with:
3434
platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6
3535

36-
- uses: docker/setup-buildx-action@v2
36+
- uses: docker/setup-buildx-action@v3
3737
id: buildx
3838

39-
- uses: docker/login-action@v2
39+
- uses: docker/login-action@v3
4040
with:
4141
registry: ghcr.io
4242
username: ${{ github.actor }}
4343
password: ${{ secrets.GITHUB_TOKEN }}
4444

45-
- uses: docker/login-action@v2
45+
- uses: docker/login-action@v3
4646
with:
4747
registry: quay.io
4848
username: ${{ secrets.QUAY_USERNAME }}
4949
password: ${{ secrets.QUAY_TOKEN }}
5050

51-
- uses: docker/build-push-action@v3
51+
- uses: docker/build-push-action@v6
5252
with:
5353
builder: ${{ steps.buildx.outputs.name }}
5454
file: Containerfile

.github/workflows/coverage.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: Build and Test
22
on:
3+
workflow_dispatch:
34
push:
45
branches:
56
- master
@@ -23,15 +24,15 @@ jobs:
2324
build-test-publish_coverage:
2425
runs-on: ubuntu-latest
2526
steps:
26-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2728
with:
2829
fetch-depth: 0
29-
- uses: actions/setup-go@v4
30+
- uses: actions/setup-go@v5
3031
with:
3132
go-version: '1.20'
3233
- run: go build
3334
- run: go test -coverprofile='coverage.out'
34-
- uses: sonarsource/sonarcloud-github-action@master
35+
- uses: sonarsource/sonarqube-scan-action@v4
3536
env:
3637
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3738
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

0 commit comments

Comments
 (0)