Skip to content

Commit

Permalink
Merge pull request #16 from Hasnep/upgrade-github-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Hasnep authored Nov 28, 2024
2 parents 26682e0 + 78d9317 commit a63c7cf
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
contents: write
steps:
- name: Check out the repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Roc
uses: hasnep/setup-roc@main
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/generate-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
id-token: write
steps:
- name: Check out the repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Roc
uses: hasnep/setup-roc@main
with:
Expand All @@ -26,8 +26,8 @@ jobs:
run: |
find generated-docs/ -type f -name '*.html' -exec sed -i "s/\(href\|src\)=\"\//\1=\"\/${{ github.event.repository.name }}\//g" {} +
- name: Upload docs artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: generated-docs
- name: Deploy docs
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4
6 changes: 3 additions & 3 deletions .github/workflows/run-pre-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install Roc
uses: hasnep/setup-roc@main
with:
roc-version: nightly
- name: Run Pre-commit
uses: pre-commit/[email protected].0
uses: pre-commit/[email protected].1
env:
# Prevent this action failing when running on the main branch
SKIP: no-commit-to-branch
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
contents: write
steps:
- name: Check out the repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Roc
uses: hasnep/setup-roc@main
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-draft-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:
- name: Update the draft release
id: update-draft-release
uses: release-drafter/release-drafter@v5
uses: release-drafter/release-drafter@v6
with:
config-name: release-drafter.yaml
disable-autolabeler: true
Expand Down

0 comments on commit a63c7cf

Please sign in to comment.