Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Update more actions #6307

Merged
merged 1 commit into from Feb 28, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/appspot.yaml
Expand Up @@ -28,11 +28,11 @@ jobs:

- uses: ./.github/workflows/custom-actions/prep-for-appspot

- uses: google-github-actions/auth@v0
- uses: google-github-actions/auth@v2
with:
credentials_json: '${{ secrets.APPENGINE_DEPLOY_KEY }}'

- uses: google-github-actions/deploy-appengine@v0
- uses: google-github-actions/deploy-appengine@v2
with:
project_id: shaka-player-demo
version: ${{ inputs.subdomain }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/demo-version-index.yaml
Expand Up @@ -27,14 +27,14 @@ jobs:
# We need a list of all tags for this, so fetch the entire history.
fetch-depth: 0

- uses: google-github-actions/auth@v0
- uses: google-github-actions/auth@v2
with:
credentials_json: '${{ secrets.APPENGINE_DEPLOY_KEY }}'

- name: Generate static content
run: python3 app-engine/demo-version-index/generate.py

- uses: google-github-actions/deploy-appengine@v0
- uses: google-github-actions/deploy-appengine@v2
with:
project_id: shaka-player-demo
version: index
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly-demo.yaml
Expand Up @@ -31,11 +31,11 @@ jobs:

- uses: ./.github/workflows/custom-actions/prep-for-appspot

- uses: google-github-actions/auth@v0
- uses: google-github-actions/auth@v2
with:
credentials_json: '${{ secrets.APPENGINE_DEPLOY_KEY }}'

- uses: google-github-actions/deploy-appengine@v0
- uses: google-github-actions/deploy-appengine@v2
with:
project_id: shaka-player-demo
version: nightly
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/release-please.yaml
Expand Up @@ -113,13 +113,14 @@ jobs:
fi

- run: npm pack
- uses: svenstaro/upload-release-action@483c1e56f95e88835747b1c7c60581215016cbf2
- uses: svenstaro/upload-release-action@04733e069f2d7f7f0b4aebc4fbdbce8613b03ccd # 2.9.0
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ needs.release.outputs.tag_name }}
file: shaka-player-*.tgz
file_glob: true
overwrite: true
make_latest: false

appspot:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -165,11 +166,11 @@ jobs:

- uses: ./.github/workflows/custom-actions/prep-for-appspot

- uses: google-github-actions/auth@v0
- uses: google-github-actions/auth@v2
with:
credentials_json: '${{ secrets.APPENGINE_DEPLOY_KEY }}'

- uses: google-github-actions/deploy-appengine@v0
- uses: google-github-actions/deploy-appengine@v2
with:
project_id: shaka-player-demo
version: ${{ env.APPSPOT_SUBDOMAIN }}
Expand Down