Skip to content
Open
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/command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Slash Command Dispatch
uses: peter-evans/slash-command-dispatch@v3.0.2
uses: peter-evans/slash-command-dispatch@v5.0.2
with:
token: ${{ secrets.WOOSMAP_GH_ACCESS_TOKEN }}
reaction-token: ${{ secrets.WOOSMAP_GH_ACCESS_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@ jobs:
WOOSMAP_PUBLIC_API_KEY: "${{ secrets.WOOSMAP_PUBLIC_API_KEY }}"
WOOSMAP_PRIVATE_API_KEY: "${{ secrets.WOOSMAP_PRIVATE_API_KEY }}"
steps:
- uses: actions/checkout@v4.4.0
- uses: actions/checkout@v7.0.1
with:
token: ${{ secrets.WOOSMAP_GH_ACCESS_TOKEN }}
- uses: pnpm/action-setup@v4.3.0
- uses: pnpm/action-setup@v6.0.10
with:
version: 9.15.9
- name: Install dependencies
run: pnpm i --frozen-lockfile
- run: pnpm run build
- run: pnpm test
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4.2.2
uses: cycjimmy/semantic-release-action@v6.0.0
with:
extra_plugins: |
"@semantic-release/commit-analyzer"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/schema-change-notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
actions: read
steps:
- name: Checkout code
uses: actions/checkout@v4.4.0
uses: actions/checkout@v7.0.1
with:
fetch-depth: 0

Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:

- name: Comment on PR or linked Issue if schemas changed
if: steps.schema_changes.outputs.changed_files && steps.findPr.outputs.number != ''
uses: actions/github-script@v6.4.1
uses: actions/github-script@v9.0.0
with:
github-token: ${{ secrets.HELPER_TOKEN }}
script: |
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:

- name: Create issue in Woosmap/woosmap if schemas changed
if: steps.schema_changes.outputs.changed_files && steps.findPr.outputs.number != ''
uses: actions/github-script@v6.4.1
uses: actions/github-script@v9.0.0
with:
github-token: ${{ secrets.HELPER_TOKEN }}
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.4.0
- uses: pnpm/action-setup@v4.3.0
- uses: actions/checkout@v7.0.1
- uses: pnpm/action-setup@v6.0.10
with:
version: 9.15.9
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-devdoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Dispatch Release Event
uses: peter-evans/repository-dispatch@v2.1.2
uses: peter-evans/repository-dispatch@v4.0.1
with:
token: ${{ secrets.WOOSMAP_GH_ACCESS_TOKEN }}
repository: woosmap/developers.woosmap.com
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/update-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ jobs:
update-dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.4.0
- uses: actions/checkout@v7.0.1
with:
token: ${{ secrets.WOOSMAP_GH_ACCESS_TOKEN }}
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
ref: ${{ github.event.client_payload.pull_request.head.ref }}
- uses: pnpm/action-setup@v4.3.0
- uses: pnpm/action-setup@v6.0.10
with:
version: 9.15.9
- name: Install dependencies
Expand All @@ -25,7 +25,7 @@ jobs:
git commit -m "chore: update dist folder [skip ci]" || true
git push origin
- name: Add reaction
uses: peter-evans/create-or-update-comment@v2.1.1
uses: peter-evans/create-or-update-comment@v5.0.0
with:
token: ${{ secrets.WOOSMAP_GH_ACCESS_TOKEN }}
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}
Expand Down