Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Process Pull Request
id: process-pr
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Use Node.js "18.x"
uses: actions/setup-node@v4
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:

schedule:
# Schedule automatic release every Wednesday
# - cron: "0 0 * * 3"
- cron: "0 0 * * 3"

jobs:
release:
Expand All @@ -32,8 +32,7 @@ jobs:
steps:
- name: Checkout
id: checkout
# TODO: Have to use this commit because fetch-tags is not working in main till this is merged to main
uses: actions/checkout@0548471950d86b19eae6c063105707c831fb5c03
uses: actions/checkout@v6
with:
ref: ${{ github.event.ref }}
fetch-tags: true
Expand Down