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
4 changes: 2 additions & 2 deletions .github/actions/setup-pnpm-demos-npm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ runs:
shell: bash
run: echo "pnpm_version=$(grep 'pnpm' mise.toml | sed 's/.*= *\"\(.*\)\"/\1/')" >> $GITHUB_OUTPUT
- name: Install pnpm
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061
uses: pnpm/action-setup@b307475762933b98ed359c036b0e51f26b63b74b
with:
version: ${{ steps.get-pnpm-version.outputs.pnpm_version }}
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Setup pnpm cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-npm-demo-${{ hashFiles('demos/npm/pnpm-lock.yaml') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/setup-pnpm-demos-react/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ runs:
shell: bash
run: echo "pnpm_version=$(grep 'pnpm' mise.toml | sed 's/.*= *\"\(.*\)\"/\1/')" >> $GITHUB_OUTPUT
- name: Install pnpm
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061
uses: pnpm/action-setup@b307475762933b98ed359c036b0e51f26b63b74b
with:
version: ${{ steps.get-pnpm-version.outputs.pnpm_version }}
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Setup pnpm cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-react-demo-${{ hashFiles('demos/react/pnpm-lock.yaml') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/setup-pnpm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ runs:
shell: bash
run: echo "pnpm_version=$(grep 'pnpm' mise.toml | sed 's/.*= *\"\(.*\)\"/\1/')" >> $GITHUB_OUTPUT
- name: Install pnpm
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061
uses: pnpm/action-setup@b307475762933b98ed359c036b0e51f26b63b74b
with:
version: ${{ steps.get-pnpm-version.outputs.pnpm_version }}
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Setup pnpm cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

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

- name: Setup mise
uses: ./.github/actions/setup-mise
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Download web artifacts
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -109,13 +109,13 @@ jobs:
path: browser/dist

- name: Auth to google cloud
uses: google-github-actions/auth@v2
uses: google-github-actions/auth@v3
with:
workload_identity_provider: ${{ env.workload_identity_provider }}
service_account: ${{ env.service-account }}

- name: Upload SDK to GCS bucket, upload new version
uses: google-github-actions/upload-cloud-storage@v2
uses: google-github-actions/upload-cloud-storage@v3
with:
path: "browser/dist/sdk.js"
destination: "optable-web-sdk/${{ matrix.sdk-version }}"
Expand All @@ -131,7 +131,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Get sdk artifact
uses: actions/download-artifact@v4
Expand All @@ -157,7 +157,7 @@ jobs:
name: dist-npm-demo
path: demos/npm/dist

- uses: "google-github-actions/auth@v2"
- uses: "google-github-actions/auth@v3"
id: auth
with:
token_format: "access_token"
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
if: ${{ failure() }}
steps:
- name: Post to Slack
uses: slackapi/slack-github-action@v2.0.0
uses: slackapi/slack-github-action@v3.0.1
with:
method: chat.postMessage
token: "${{ secrets.SLACK_MESSENGER_APP_TOKEN }}"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/reusable-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup pnpm
uses: ./.github/actions/setup-pnpm
Expand All @@ -39,7 +39,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup pnpm
uses: ./.github/actions/setup-pnpm
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
UID2_BASE_URL: ${{ vars.UID2_BASE_URL }}
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Build vanilla demo
run: make demo-html
Expand All @@ -90,7 +90,7 @@ jobs:
working-directory: demos/react
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Download web artifacts
uses: actions/download-artifact@v4
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
working-directory: demos/npm
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup pnpm demos npm
uses: ./.github/actions/setup-pnpm-demos-npm
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup pnpm
uses: ./.github/actions/setup-pnpm
Expand All @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup pnpm
uses: ./.github/actions/setup-pnpm
Expand Down
Loading