Skip to content

Commit

Permalink
chore: Fix lint errors in GitHub workflows (#230)
Browse files Browse the repository at this point in the history
  • Loading branch information
varungandhi-src authored Nov 18, 2024
1 parent b0a69f4 commit b2b0dfc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
echo "-----------------------------------------------------"
exit 1
fi
- uses: actions/setup-go@v3
- uses: actions/setup-go@v5
with:
go-version: '>=1.19'
# - name: Lint workflow files
# run: |
# go install github.com/rhysd/actionlint/cmd/actionlint@latest
# actionlint .github/workflows/*.yml
- name: Lint workflow files
run: |
go install github.com/rhysd/actionlint/cmd/actionlint@latest
actionlint .github/workflows/*.yml
6 changes: 3 additions & 3 deletions .github/workflows/publish-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ jobs:
- uses: actions/checkout@v4
with:
ref: ${{ env.TAG }}
- uses: docker/setup-buildx-action@v2
- uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
id: docker_build_autoindex
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
file: Dockerfile.autoindex
push: true
Expand Down

0 comments on commit b2b0dfc

Please sign in to comment.