Skip to content

Commit

Permalink
update-wildmatch: update default CircleCI CLI and wildmatch versions (#…
Browse files Browse the repository at this point in the history
…70)

* update-wildmatch: update default CircleCI CLI and wildmatch versions

* update-wildmatch: remove .python-version

* update-wildmatch: fix

* update-wildmatch: pass review

* update-wildmatch: test alpha

---------

Co-authored-by: Emma Doyle <emma@sbevision.com>
  • Loading branch information
emmeowzing and Emma Doyle committed May 30, 2023
1 parent 0f44611 commit 3aa54db
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ orbs:
orb-tools: circleci/orb-tools@11.6.1
circleci-cli: circleci/circleci-cli@0.1.9
dynamic: bjd2385/dynamic-continuation@dev:alpha
# dynamic: bjd2385/dynamic-continuation@3.6.8
general: bjd2385/general@0.6.3
# dynamic: bjd2385/dynamic-continuation@3.6.9
general: bjd2385/general@0.7.1
slack: circleci/slack@4.12.5


Expand Down
2 changes: 1 addition & 1 deletion .circleci/src.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 2.1
orbs:
orb-tools: circleci/orb-tools@11.6.1
circleci-cli: circleci/circleci-cli@0.1.9
general: bjd2385/general@0.6.1
general: bjd2385/general@0.7.1


workflows:
Expand Down
2 changes: 1 addition & 1 deletion src/commands/filter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ parameters:
wildmatch-version:
description: Wildmatch package version to install. For available versions, check PyPI - https://pypi.org/project/wildmatch/
type: string
default: 0.3.1
default: 0.3.3
circle-token:
description: Token to authenticate with CircleCI
type: string
Expand Down
13 changes: 11 additions & 2 deletions src/jobs/continue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ parameters:
wildmatch-version:
description: Wildmatch package version to install. For available versions, check PyPI - https://pypi.org/project/wildmatch/#description
type: string
default: 0.3.1
default: 0.3.3
circle-token:
description: Token to authenticate with CircleCI
type: string
Expand Down Expand Up @@ -116,9 +116,18 @@ parameters:
circleci-cli-version:
description: Version of the CircleCI CLI to install. (Cf. https://github.com/CircleCI-Public/circleci-cli/releases.)
type: string
default: v0.1.23845
default: v0.1.26837
steps:
- checkout
- run:
name: 'Pre: remove .python-version'
# checked-out .python-version files conflict with the executor version used by dynamic-continuation's dependencies.
# This move does _not_ effect whether or not a change to .python-version will enable a root workflow, since
# `git diff-tree` is checking changes between two commits, not unstaged changes.
command: |
if [ -f .python-version ]; then
rm .python-version
fi
- when:
condition: << parameters.pre-script >>
steps:
Expand Down

0 comments on commit 3aa54db

Please sign in to comment.