fix(deps): update 3d-parties #365
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go CI | |
on: | |
push: | |
branches: ['**'] | |
tags: ['v[0-9]+\.[0-9]+\.[0-9]+'] | |
jobs: | |
go_ci: | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '^1.20' | |
- name: Set up Google Cloud SDK | |
uses: google-github-actions/setup-gcloud@v2 | |
with: | |
install_components: 'beta,cloud-datastore-emulator' | |
- run: gcloud version | |
- uses: strongo/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} |