Skip to content
Open
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
12 changes: 6 additions & 6 deletions .github/workflows/build-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
test-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
Expand All @@ -35,7 +35,7 @@ jobs:
test-windows:
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
Expand All @@ -61,7 +61,7 @@ jobs:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
runs-on: windows-2022
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Extract metadata (tags, labels) for Docker
id: meta
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Extract metadata (tags, labels) for Docker
id: meta
Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:
- publish-multi-arch-image
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Extract metadata (tags, labels) for Docker
id: meta
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
release-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Login to Docker Hub
uses: docker/login-action@v3
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
- ltsc2022
runs-on: windows-2022
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Login to Docker Hub
uses: docker/login-action@v3
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
needs:
- release
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Login to Docker Hub
uses: docker/login-action@v3
Expand Down
Loading