Skip to content

Commit

Permalink
chore: upgrade github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
andig committed May 1, 2024
1 parent 942a439 commit fd653ec
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,9 @@ jobs:
- run: mkdir dist && touch dist/empty

- name: Lint
uses: golangci/golangci-lint-action@v4
uses: golangci/golangci-lint-action@v5
with:
version: latest
skip-pkg-cache: true
skip-build-cache: true
args: --out-format=colored-line-number --timeout 5m

ui:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: make install docs

- name: Deploy to docs repo
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
personal_token: ${{ secrets.GH_TOKEN }}
publish_dir: ./templates/docs
Expand All @@ -36,4 +36,4 @@ jobs:
destination_dir: ${{ github.event_name == 'release' && 'templates/release' || github.event_name == 'schedule' && 'templates/nightly' || 'templates/unknown_trigger' }}
allow_empty_commit: false
commit_message: ${{ github.event_name == 'release' && 'Templates update for release' || github.event_name == 'schedule' && 'Templates update for nightly' || 'Templates update unknown trigger' }}
if: ${{ success() }}
if: success()
4 changes: 2 additions & 2 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: rm templates/evcc.io/.gitignore

- name: Deploy to evcc.io repo
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
personal_token: ${{ secrets.GH_TOKEN }}
publish_dir: ./templates/evcc.io/
Expand All @@ -37,4 +37,4 @@ jobs:
destination_dir: data
allow_empty_commit: false
commit_message: Brand data update
if: ${{ success() }}
if: success()

0 comments on commit fd653ec

Please sign in to comment.