Skip to content

Bump actions/checkout from 6.0.3 to 7.0.0#38

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/actions/checkout-7.0.0
Open

Bump actions/checkout from 6.0.3 to 7.0.0#38
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/actions/checkout-7.0.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 24, 2026

Copy link
Copy Markdown

Bumps actions/checkout from 6.0.3 to 7.0.0.

Release notes

Sourced from actions/checkout's releases.

v7.0.0

What's Changed

New Contributors

Full Changelog: actions/checkout@v6.0.3...v7.0.0

Changelog

Sourced from actions/checkout's changelog.

Changelog

v7.0.0

v6.0.3

v6.0.2

v6.0.1

v6.0.0

v5.0.1

v5.0.0

v4.3.1

v4.3.0

v4.2.2

v4.2.1

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.3 to 7.0.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@df4cb1c...9c091bb)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Jun 24, 2026
@github-actions

Copy link
Copy Markdown

Squawk Report

🚒 8 violations across 1 file(s)


example.sql

BEGIN;
--
-- Create model Bar
--
CREATE TABLE "core_bar"(
    "id" serial NOT NULL PRIMARY KEY,
    "alpha" varchar(100) NOT NULL
);
CREATE INDEX "field_name_idx" ON "table_name"("field_name");
ALTER TABLE table_name
    ADD CONSTRAINT field_name_constraint UNIQUE (field_name);
COMMIT;

🚒 Rule Violations (8)

warning[�]8;;https://squawkhq.com/docs/prefer-bigint-over-int�\prefer-bigint-over-int�]8;;�\]: Using 32-bit integer fields can result in hitting the max `int` limit.
  ╭▸ example.sql:6:10
  │
6 │     "id" serial NOT NULL PRIMARY KEY,
  │          ━━━━━━
  │
  ├ help: Use 64-bit integer values instead to prevent hitting this limit.
  ╭╴
6 │     "id" bigserial NOT NULL PRIMARY KEY,
  ╰╴         +++
warning[�]8;;https://squawkhq.com/docs/prefer-identity�\prefer-identity�]8;;�\]: Serial types make schema, dependency, and permission management difficult.
  ╭▸ example.sql:6:10
  │
6 │     "id" serial NOT NULL PRIMARY KEY,
  │          ━━━━━━
  │
  ├ help: Use an `IDENTITY` column instead.
  ╭╴
6 -     "id" serial NOT NULL PRIMARY KEY,
6 +     "id" integer generated by default as identity NOT NULL PRIMARY KEY,
  ╰╴
warning[�]8;;https://squawkhq.com/docs/prefer-text-field�\prefer-text-field�]8;;�\]: Changing the size of a `varchar` field requires an `ACCESS EXCLUSIVE` lock, that will prevent all reads and writes to the table.
  ╭▸ example.sql:7:13
  │
7 │     "alpha" varchar(100) NOT NULL
  │             ━━━━━━━━━━━━
  │
  ├ help: Use a `TEXT` field with a `CHECK` constraint.
  ╭╴
7 -     "alpha" varchar(100) NOT NULL
7 +     "alpha" text NOT NULL
  ╰╴
warning[�]8;;https://squawkhq.com/docs/require-concurrent-index-creation�\require-concurrent-index-creation�]8;;�\]: During normal index creation, table updates are blocked, but reads are still allowed.
  ╭▸ example.sql:9:1
  │
9 │ CREATE INDEX "field_name_idx" ON "table_name"("field_name");
  │ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  │
  ├ help: Use `concurrently` to avoid blocking writes.
  ╭╴
9 │ CREATE INDEX concurrently "field_name_idx" ON "table_name"("field_name");
  ╰╴             ++++++++++++
warning[�]8;;https://squawkhq.com/docs/require-timeout-settings�\require-timeout-settings�]8;;�\]: Missing `set lock_timeout` before potentially slow operations
  ╭▸ example.sql:9:1
  │
9 │ CREATE INDEX "field_name_idx" ON "table_name"("field_name");
  │ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  │
  ├ help: Configure a `lock_timeout` before this statement.
  ╭╴
1 + set lock_timeout = '1s';
  ╰╴
warning[�]8;;https://squawkhq.com/docs/require-timeout-settings�\require-timeout-settings�]8;;�\]: Missing `set statement_timeout` before potentially slow operations
  ╭▸ example.sql:9:1
  │
9 │ CREATE INDEX "field_name_idx" ON "table_name"("field_name");
  │ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  │
  ├ help: Configure a `statement_timeout` before this statement
  ╭╴
1 + set statement_timeout = '5s';
  ╰╴
warning[�]8;;https://squawkhq.com/docs/constraint-missing-not-valid�\constraint-missing-not-valid�]8;;�\]: By default new constraints require a table scan and block writes to the table while that scan occurs.
   ╭▸ example.sql:11:5
   │
11 │     ADD CONSTRAINT field_name_constraint UNIQUE (field_name);
   │     ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   │
   ╰ help: Use `NOT VALID` with a later `VALIDATE CONSTRAINT` call.
warning[�]8;;https://squawkhq.com/docs/disallowed-unique-constraint�\disallowed-unique-constraint�]8;;�\]: Adding a `UNIQUE` constraint requires an `ACCESS EXCLUSIVE` lock which blocks reads and writes to the table while the index is built.
   ╭▸ example.sql:11:9
   │
11 │     ADD CONSTRAINT field_name_constraint UNIQUE (field_name);
   │         ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   │
   ╰ help: Create an index `CONCURRENTLY` and create the constraint using the index.

📚 More info on rules

⚡️ Powered by Squawk (2.58.0), a linter for PostgreSQL, focused on migrations

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant