Skip to content

Commit

Permalink
Update GH Actions dependencies (#254)
Browse files Browse the repository at this point in the history
## Change

Just use mayor version to avoid chore of updating dependencies. Actions barely have breaking changes within a major release.

## Reference

`github-pages-deploy-action` v3 to v4 migration guide:
JamesIves/github-pages-deploy-action#592
  • Loading branch information
Rotzbua authored Jul 27, 2023
1 parent 018b121 commit ab3629a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/en-updates-to-translation-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: md2po _i18n/en/general/*.md --po-filepath _i18n/translation-files/site-general.pot --save --quiet
- name: Push to translation-files branch
# see https://github.com/s0/git-publish-subdir-action
uses: s0/git-publish-subdir-action@v2.5.0
uses: s0/git-publish-subdir-action@v2
env:
REPO: self
BRANCH: translation-files
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
- run: gem install bundler jekyll --no-document
- run: bundle install
- run: bundle exec jekyll build
- uses: JamesIves/github-pages-deploy-action@3.7.1
- uses: JamesIves/github-pages-deploy-action@4
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: _site
CLEAN: true
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: _site
clean: true

0 comments on commit ab3629a

Please sign in to comment.