Skip to content

Commit 4fdf001

Browse files
committed
Updates CI action versions
1 parent 41a61d2 commit 4fdf001

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/docker.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,23 +15,23 @@ jobs:
1515

1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919

2020
- name: Log in to the Container registry
21-
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
21+
uses: docker/login-action@v3
2222
with:
2323
registry: ${{ env.REGISTRY }}
2424
username: ${{ github.actor }}
2525
password: ${{ secrets.GITHUB_TOKEN }}
2626

2727
- name: Extract metadata (tags, labels) for Docker
2828
id: meta
29-
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
29+
uses: docker/metadata-action@v5
3030
with:
3131
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
3232

3333
- name: Build and push Docker image
34-
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
34+
uses: docker/build-push-action@v5
3535
with:
3636
context: .
3737
push: true

.github/workflows/gofmt.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ jobs:
44
format:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v3
8-
- uses: actions/setup-go@v3
7+
- uses: actions/checkout@v4
8+
- uses: actions/setup-go@v4
99
with:
1010
go-version: "1.21"
1111
- run: if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then exit 1; fi

.github/workflows/golint.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ jobs:
44
lint:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v3
8-
- uses: actions/setup-go@v3
7+
- uses: actions/checkout@v4
8+
- uses: actions/setup-go@v4
99
with:
1010
go-version: "1.21.x"
1111
- run: "go install honnef.co/go/tools/cmd/[email protected]"

.github/workflows/tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ${{ matrix.os }}
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717

1818
- uses: ikalnytskyi/action-setup-postgres@v4
1919
id: postgres

0 commit comments

Comments
 (0)