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
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ runs:
using: "composite"
steps:
- name: 'Set up Cloud SDK'
uses: 'google-github-actions/setup-gcloud@v3.0.0'
uses: 'google-github-actions/setup-gcloud@v3.0.1'
with:
version: '>= 363.0.0'
- name: Deploy deb package into Artifact Registry
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
- name: Get exact filename
run: echo "path=$(find . -name cuttlefish-cvdremote_*.deb)" >> $GITHUB_ENV
- name: Authentication on GCP project android-cuttlefish-artifacts
uses: 'google-github-actions/auth@v2'
uses: 'google-github-actions/auth@v3'
with:
credentials_json: '${{ secrets.artifact-registry-uploader-json-creds }}'
- name: Deploy debian package cuttlefish-cvdremote
Expand All @@ -91,7 +91,7 @@ jobs:
- name: Get exact filename
run: echo "path=$(find . -name cuttlefish-cvdremote_*.deb)" >> $GITHUB_ENV
- name: Authentication on GCP project android-cuttlefish-artifacts
uses: 'google-github-actions/auth@v2'
uses: 'google-github-actions/auth@v3'
with:
credentials_json: '${{ secrets.artifact-registry-uploader-json-creds }}'
- name: Deploy debian package cuttlefish-cvdremote
Expand All @@ -110,11 +110,11 @@ jobs:
- name: Build docker image
run: docker build -t cuttlefish-cloud-orchestrator .
- name: Authentication on GCP project android-cuttlefish-artifacts
uses: 'google-github-actions/auth@v2'
uses: 'google-github-actions/auth@v3'
with:
credentials_json: '${{ secrets.artifact-registry-uploader-json-creds }}'
- name: Login to Artifact Registry
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # aka v3.5.0
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
with:
registry: us-docker.pkg.dev
username: _json_key
Expand All @@ -135,11 +135,11 @@ jobs:
- name: Build docker image
run: docker build -t cuttlefish-cloud-orchestrator .
- name: Authentication on GCP project android-cuttlefish-artifacts
uses: 'google-github-actions/auth@v2'
uses: 'google-github-actions/auth@v3'
with:
credentials_json: '${{ secrets.artifact-registry-uploader-json-creds }}'
- name: Login to Artifact Registry
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # aka v3.5.0
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
with:
registry: us-docker.pkg.dev
username: _json_key
Expand All @@ -158,11 +158,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@a81bbbf8298c0fa03ea29cdc473d45769f953675 # aka v2
- name: Authentication on GCP project android-cuttlefish-artifacts
uses: 'google-github-actions/auth@v2'
uses: 'google-github-actions/auth@v3'
with:
credentials_json: '${{ secrets.artifact-registry-uploader-json-creds }}'
- name: Login to Artifact Registry
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # aka v3.5.0
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0
with:
registry: us-docker.pkg.dev
username: _json_key
Expand All @@ -186,11 +186,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@a81bbbf8298c0fa03ea29cdc473d45769f953675 # aka v2
- name: Authentication on GCP project android-cuttlefish-artifacts
uses: 'google-github-actions/auth@v2'
uses: 'google-github-actions/auth@v3'
with:
credentials_json: '${{ secrets.artifact-registry-uploader-json-creds }}'
- name: 'Set up Cloud SDK'
uses: 'google-github-actions/setup-gcloud@v3.0.0'
uses: 'google-github-actions/setup-gcloud@v3.0.1'
with:
version: '>= 363.0.0'
- name: Deploy conf.toml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/presubmit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Vet
run: go vet ./...
- name: Staticcheck
uses: dominikh/staticcheck-action@v1.3.1
uses: dominikh/staticcheck-action@v1.4.1
with:
version: "latest"
install-go: false
Expand Down