Skip to content

Commit 3b2a3c0

Browse files
committed
Updated to use the latest version of the GH actions
1 parent 990e184 commit 3b2a3c0

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/docker.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,33 +11,33 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Check out the repo
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
1717

1818
- name: Docker meta
1919
id: meta
20-
uses: docker/metadata-action@v4
20+
uses: docker/metadata-action@v5
2121
with:
2222
images: |
2323
msoap/shell2http
2424
tags: |
2525
type=semver,pattern={{version}}
2626
2727
- name: Set up QEMU
28-
uses: docker/setup-qemu-action@v2
28+
uses: docker/setup-qemu-action@v3
2929

3030
- name: Set up Docker Buildx
31-
uses: docker/setup-buildx-action@v2
31+
uses: docker/setup-buildx-action@v3
3232

3333
- name: Log in to Docker Hub
34-
uses: docker/login-action@v2
34+
uses: docker/login-action@v3
3535
with:
3636
username: ${{ secrets.DOCKER_USERNAME }}
3737
password: ${{ secrets.DOCKER_TOKEN }}
3838

3939
- name: Push to Docker Hub
40-
uses: docker/build-push-action@v4
40+
uses: docker/build-push-action@v5
4141
with:
4242
context: .
4343
platforms: linux/amd64,linux/arm64,linux/arm/v6

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
with:
1818
fetch-depth: 0
1919
- name: Set up Go
20-
uses: actions/setup-go@v3
20+
uses: actions/setup-go@v5
2121
with:
2222
go-version: 1.x
2323
- name: Run GoReleaser
24-
uses: goreleaser/goreleaser-action@v3
24+
uses: goreleaser/goreleaser-action@v5
2525
with:
2626
distribution: goreleaser
2727
version: latest

0 commit comments

Comments
 (0)