Skip to content

Commit

Permalink
ci: Update more actions (#6307)
Browse files Browse the repository at this point in the history
I missed some before.  I only updated actions from GitHub "actions/..."

This updates all other actions except google-github-actions/release-please, which has some breaking changes we would need to absorb and test.
  • Loading branch information
joeyparrish authored and avelad committed Apr 8, 2024
1 parent 96a0ca0 commit 1def322
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
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

0 comments on commit 1def322

Please sign in to comment.