Skip to content

Commit fea466b

Browse files
Bump super-linter/super-linter from 8.2.1 to 8.3.0 (#207)
* Bump super-linter/super-linter from 8.2.1 to 8.3.0 Bumps [super-linter/super-linter](https://github.com/super-linter/super-linter) from 8.2.1 to 8.3.0. - [Release notes](https://github.com/super-linter/super-linter/releases) - [Changelog](https://github.com/super-linter/super-linter/blob/main/CHANGELOG.md) - [Commits](super-linter/super-linter@v8.2.1...v8.3.0) --- updated-dependencies: - dependency-name: super-linter/super-linter dependency-version: 8.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Fix variable name from QUERY to query in restore_data.ipynb * Add cooldown configuration in dependabot.yml * Update cooldown days to 7 for all package ecosystems in dependabot.yml --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Max Ostapenko <1611259+max-ostapenko@users.noreply.github.com>
1 parent c0e1799 commit fea466b

3 files changed

Lines changed: 11 additions & 5 deletions

File tree

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,20 @@ updates:
1313
- "/infra/dataform-service"
1414
schedule:
1515
interval: "weekly"
16+
cooldown:
17+
default-days: 7
1618

1719
- package-ecosystem: "terraform"
1820
directories:
1921
- "/infra/tf/"
2022
schedule:
2123
interval: "weekly"
24+
cooldown:
25+
default-days: 7
2226

2327
- package-ecosystem: "github-actions"
2428
directory: "/"
2529
schedule:
2630
interval: "weekly"
31+
cooldown:
32+
default-days: 7

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
persist-credentials: false
2828

2929
- name: Lint Code Base
30-
uses: super-linter/super-linter/slim@v8.2.1
30+
uses: super-linter/super-linter/slim@v8.3.0
3131
env:
3232
DEFAULT_BRANCH: main
3333
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

workspace/restore_data.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
},
2424
"outputs": [],
2525
"source": [
26-
"QUERY = \"\"\"\n",
26+
"query = \"\"\"\n",
2727
"## [Restore deleted dataset](https://docs.cloud.google.com/bigquery/docs/restore-deleted-datasets#restore_a_dataset)\n",
2828
"UNDROP SCHEMA httparchive.crawl;\n",
2929
"\"\"\"\n",
30-
"client.query(QUERY).result()"
30+
"client.query(query).result()"
3131
]
3232
},
3333
{
@@ -55,14 +55,14 @@
5555
},
5656
"outputs": [],
5757
"source": [
58-
"QUERY = \"\"\"\n",
58+
"query = \"\"\"\n",
5959
"## [Restore a table to a specific point in time](https://cloud.google.com/bigquery/docs/restore-tables#restoring_a_table_to_a_specific_point_in_time)\n",
6060
"CREATE TABLE httparchive.crawl_staging.pages_restored_20250804 AS\n",
6161
"SELECT *\n",
6262
"FROM httparchive.crawl.pages\n",
6363
" FOR SYSTEM_TIME AS OF TIMESTAMP_SUB(CURRENT_TIMESTAMP(), INTERVAL 1 HOUR);\n",
6464
"\"\"\"\n",
65-
"client.query(QUERY).result()"
65+
"client.query(query).result()"
6666
]
6767
}
6868
],

0 commit comments

Comments
 (0)