Skip to content

Commit

Permalink
[Closes #475] Bump github action dependencies with open dependabot PRs (
Browse files Browse the repository at this point in the history
  • Loading branch information
francisli authored Dec 6, 2024
1 parent ddefaa8 commit 468d818
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
contents: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Authenticate with Google Cloud
id: auth
Expand All @@ -23,16 +23,16 @@ jobs:
access_token_lifetime: 300s

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- uses: docker/login-action@v1
- uses: docker/login-action@v3
with:
registry: "${{ secrets.GCS_REGION }}-docker.pkg.dev"
username: "oauth2accesstoken"
password: ${{ steps.auth.outputs.access_token }}

- name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v6
with:
push: true
tags: "${{ secrets.GCS_REGION }}-docker.pkg.dev/${{ secrets.GCS_PROJECT_ID }}/${{ secrets.GCS_ARTIFACT_REPO_NAME }}/compass:${{ github.sha }}"
Expand All @@ -50,7 +50,7 @@ jobs:
run:
working-directory: ./terraform/gcs
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Authenticate with Google Cloud
id: auth
Expand All @@ -61,7 +61,7 @@ jobs:
service_account: ${{ secrets.GCS_SERVICE_ACCOUNT_EMAIL }}
access_token_lifetime: 300s

- uses: hashicorp/setup-terraform@v2
- uses: hashicorp/setup-terraform@v3

- run: terraform init -backend-config=../backend.hcl

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v2
with:
Expand All @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v2
with:
Expand All @@ -42,7 +42,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v2
with:
Expand Down

0 comments on commit 468d818

Please sign in to comment.