Skip to content

Commit b2b0dfc

Browse files
chore: Fix lint errors in GitHub workflows (#230)
1 parent b0a69f4 commit b2b0dfc

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/lint.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
echo "-----------------------------------------------------"
2424
exit 1
2525
fi
26-
- uses: actions/setup-go@v3
26+
- uses: actions/setup-go@v5
2727
with:
2828
go-version: '>=1.19'
29-
# - name: Lint workflow files
30-
# run: |
31-
# go install github.com/rhysd/actionlint/cmd/actionlint@latest
32-
# actionlint .github/workflows/*.yml
29+
- name: Lint workflow files
30+
run: |
31+
go install github.com/rhysd/actionlint/cmd/actionlint@latest
32+
actionlint .github/workflows/*.yml

.github/workflows/publish-docker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ jobs:
3636
- uses: actions/checkout@v4
3737
with:
3838
ref: ${{ env.TAG }}
39-
- uses: docker/setup-buildx-action@v2
39+
- uses: docker/setup-buildx-action@v3
4040
- name: Login to DockerHub
41-
uses: docker/login-action@v2
41+
uses: docker/login-action@v3
4242
with:
4343
username: ${{ secrets.DOCKER_USERNAME }}
4444
password: ${{ secrets.DOCKER_PASSWORD }}
4545
- name: Build and push
4646
id: docker_build_autoindex
47-
uses: docker/build-push-action@v3
47+
uses: docker/build-push-action@v6
4848
with:
4949
file: Dockerfile.autoindex
5050
push: true

0 commit comments

Comments
 (0)