Skip to content

Commit

Permalink
ci: fix actions anotation
Browse files Browse the repository at this point in the history
  • Loading branch information
windchime-yk committed Jul 3, 2024
1 parent 394c8a1 commit df45b06
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
contents: write
id-token: write # The OIDC ID token is used for authentication with JSR.
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
Expand All @@ -33,12 +33,12 @@ jobs:
git commit -m "chore: update version to ${{ steps.tag_version.outputs.new_tag }}"
git push
- name: Create a GitHub release
uses: actions/create-release@v1
uses: ncipollo/release-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.tag_version.outputs.new_tag }}
release_name: Release ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}
tag: ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}
- name: Publish JSR
run: |
Expand Down

0 comments on commit df45b06

Please # to comment.