Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
persist-credentials: false

- name: Lint Code Base
uses: super-linter/super-linter/slim@v8.3.2
uses: super-linter/super-linter/slim@v8.5.0
env:
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion infra/bigquery-export/docker.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ data "external" "source_hash" {

# Build Docker image
resource "docker_image" "function_image" {
# hash added to image tag to force rebuilds ans service image updates when source changes
# hash added to image tag to force rebuilds and service image updates when source changes
name = "${var.region}-docker.pkg.dev/${var.project}/dataform/${var.function_name}:${data.external.source_hash.result.hash}"

build {
Expand Down
2 changes: 1 addition & 1 deletion infra/dataform-service/docker.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ data "external" "source_hash" {

# Build Docker image
resource "docker_image" "function_image" {
# hash added to image tag to force rebuilds ans service image updates when source changes
# hash added to image tag to force rebuilds and service image updates when source changes
name = "${var.region}-docker.pkg.dev/${var.project}/dataform/${var.function_name}:${data.external.source_hash.result.hash}"

build {
Expand Down
1 change: 1 addition & 0 deletions workspace/restore_data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"outputs": [],
"source": [
"\"\"\"Utilities for restoring deleted BigQuery datasets and tables.\"\"\"\n",
"\n",
"from google.cloud import bigquery\n",
"\n",
"client = bigquery.Client()\n"
Expand Down