Skip to content

Commit 2cd95a0

Browse files
committed
ci: update github actions workflow dependencies
1 parent 25d4680 commit 2cd95a0

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/changelog_reminder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414
- name: Changelog Reminder
1515
uses: mskelton/changelog-reminder-action@v3
1616
with:

.github/workflows/release_build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,31 +21,31 @@ jobs:
2121
id: go
2222

2323
- name: Check out code into the Go module directory
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v6
2525
with:
2626
fetch-depth: 0 # See: https://goreleaser.com/ci/actions/
2727

2828
- name: Setup QEMU # Used for cross-compiling with goreleaser / docker
29-
uses: docker/setup-qemu-action@v3
29+
uses: docker/setup-qemu-action@v4
3030

3131
- name: Setup Docker Buildx # Used for cross-compiling with goreleaser / docker
32-
uses: docker/setup-buildx-action@v3
32+
uses: docker/setup-buildx-action@v4
3333

3434
- name: Login to Docker Hub
35-
uses: docker/login-action@v3
35+
uses: docker/login-action@v4
3636
with:
3737
username: ${{ secrets.DOCKERHUB_USERNAME }}
3838
password: ${{ secrets.DOCKERHUB_TOKEN }}
3939

4040
- name: Login to GitHub Container Registry
41-
uses: docker/login-action@v3
41+
uses: docker/login-action@v4
4242
with:
4343
registry: ghcr.io
4444
username: ${{ github.repository_owner }}
4545
password: ${{ secrets.GITHUB_TOKEN }}
4646

4747
- name: Run GoReleaser
48-
uses: goreleaser/goreleaser-action@v5
48+
uses: goreleaser/goreleaser-action@v7
4949
with:
5050
version: latest
5151
args: release --clean --config .github/goreleaser.yml

0 commit comments

Comments
 (0)