Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump some dev components #454

Merged
merged 3 commits into from
Sep 10, 2023
Merged
Show file tree
Hide file tree
Changes from 2 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
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ workflows:
jobs:
run_pre_commit:
docker:
- image: quay.io/astronomer/ci-pre-commit:2023-08
- image: quay.io/astronomer/ci-pre-commit:2023-09
steps:
- checkout
- run:
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:

unittest-charts:
docker:
- image: quay.io/astronomer/ci-helm-release:2023-08
- image: quay.io/astronomer/ci-helm-release:2023-09
steps:
- setup_remote_docker:
version: 20.10.24
Expand All @@ -222,7 +222,7 @@ jobs:

build-and-release-internal:
docker:
- image: quay.io/astronomer/ci-helm-release:2023-08
- image: quay.io/astronomer/ci-helm-release:2023-09
steps:
- checkout
- run:
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:
path: test-results
release-internal:
docker:
- image: quay.io/astronomer/ci-helm-release:2023-08
- image: quay.io/astronomer/ci-helm-release:2023-09
steps:
- checkout
- run:
Expand All @@ -271,7 +271,7 @@ jobs:

release-public:
docker:
- image: quay.io/astronomer/ci-helm-release:2023-08
- image: quay.io/astronomer/ci-helm-release:2023-09
steps:
- checkout
- publish-github-release
Expand Down
2 changes: 1 addition & 1 deletion .circleci/generate_circleci_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
remote_docker_version = "20.10.24"

executors = ["CeleryExecutor", "LocalExecutor", "KubernetesExecutor"]
ci_runner_version = "2023-08"
ci_runner_version = "2023-09"


def main():
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ repos:
- id: remove-tabs
exclude_types: [makefile, binary]
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: "v0.0.284"
rev: "v0.0.287"
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix, --ignore, E501]
Expand Down Expand Up @@ -73,7 +73,7 @@ repos:
entry: .circleci/generate_circleci_config.py
additional_dependencies: ["jinja2"]
- repo: https://github.com/pre-commit/mirrors-prettier
rev: "v3.0.1"
rev: "v3.0.3"
hooks:
- id: prettier
args: ["--print-width=135"]
Expand Down
1 change: 1 addition & 0 deletions tests/chart_tests/requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ pytest-xdist
PyYAML
requests
tomli # indirect, needed to satisfy hash requirement
typing-extensions # indrect, needed to satisfy hash requirement
Loading