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/actions/setup-pnpm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ runs:
run_install: false

- name: Setup node
uses: actions/setup-node@v6
uses: actions/setup-node@v7
with:
node-version-file: .tool-versions
cache: 'pnpm'
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/slack-alert/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ runs:

- name: Alert on Slack
id: slack
uses: slackapi/slack-github-action@v3.0.3
uses: slackapi/slack-github-action@v4.0.0
with:
errors: true
method: chat.postMessage
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-firebase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
id-token: write

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
- uses: actions/setup-node@v6
- uses: actions/setup-node@v7
with:
node-version-file: .tool-versions
cache: npm
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
- name: notify slack of failure
id: slack
if: ${{ !success() && inputs.slack-channel-id != '' }}
uses: slackapi/slack-github-action@v3.0.3
uses: slackapi/slack-github-action@v4.0.0
with:
method: chat.postMessage
token: ${{ secrets.SLACK_BOT_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/firebase-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
id-token: write

steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version-file: .tool-versions
cache: npm
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/fireway-migrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ jobs:
id-token: write

steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
with:
node-version-file: .tool-versions
cache: npm
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
- name: notify Slack of failure
id: slack
if: ${{ !success() && inputs.slack-channel-id != '' }}
uses: slackapi/slack-github-action@v3.0.3
uses: slackapi/slack-github-action@v4.0.0
with:
method: chat.postMessage
token: ${{ secrets.SLACK_BOT_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pnpm-deploy-firebase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
group: deploy-firebase-${{ inputs.firebase-environment }}-${{ inputs.github-environment }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
- name: setup pnpm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pnpm-fireway-migrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
concurrency:
group: fireway-migrate-${{ inputs.gcp-project-id }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: setup pnpm
uses: valian-ca/github-workflows/.github/actions/setup-pnpm@main
- uses: valian-ca/github-workflows/.github/actions/gcp-github-auth@main
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-markdownlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
name: markdown lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: DavidAnson/markdownlint-cli2-action@v23
- uses: actions/checkout@v7
- uses: DavidAnson/markdownlint-cli2-action@v24
with:
globs: '**/*.md'
2 changes: 1 addition & 1 deletion .github/workflows/valian-fireway.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
concurrency:
group: fireway-migrate-${{ inputs.gcp-project-id }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: setup pnpm
uses: valian-ca/github-workflows/.github/actions/setup-pnpm@main
- uses: valian-ca/github-workflows/.github/actions/gcp-github-auth@main
Expand Down