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
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@ jobs:
matrix:
node-version: ['18.18.2', '20.5.1']
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6

- uses: volta-cli/action@v4
- uses: volta-cli/action@v5
with:
node-version: '${{ matrix.node-version }}'
yarn-version: '1.22.19'

- name: Cache puppeteer
uses: actions/cache@v3
uses: actions/cache@v5
id: cache-puppeteer
with:
path: .cache
key: ${{ matrix.node-version }}-puppeteer

- name: Cache node_modules
uses: actions/cache@v3
uses: actions/cache@v5
id: cache-node_modules
with:
path: node_modules
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
steps:
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v2.4.0
uses: dependabot/fetch-metadata@v3.1.0

- name: Enable auto-merge for Dependabot PRs of patch and minor updates
if: ${{steps.dependabot-metadata.outputs.update-type == 'version-update:semver-patch' || steps.dependabot-metadata.outputs.update-type == 'version-update:semver-minor'}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zulip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
echo "CONTENT=$NEW_CONTENT" >> $GITHUB_OUTPUT

- name: Send a stream message
uses: zulip/github-actions-zulip/send-message@v1
uses: zulip/github-actions-zulip/send-message@v2
with:
api-key: ${{ secrets.ZULIP_API_KEY_GITHUB_ACTIONS_BOT }}
email: "github-actions-bot@chat.kobotoolbox.org"
Expand Down
Loading