Skip to content

Commit

Permalink
fix: bump poetry versions in gha workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
tconbeer committed Jan 7, 2025
1 parent 6b75d13 commit ce9f163
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.local
key: ${{ runner.os }}-poetry-171 # increment to reset cache
key: ${{ runner.os }}-poetry-184

- name: Add cached Poetry to PATH
if: steps.cached-poetry-install.outputs.cache-hit == 'true'
Expand All @@ -45,7 +45,7 @@ jobs:
if: steps.cached-poetry-install.outputs.cache-hit != 'true'
uses: snok/install-poetry@v1
with:
version: 1.7.1
version: 1.8.4

- name: Get harlequin Version
id: harlequin_version
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.local
key: ${{ runner.os }}-poetry-171 # increment to reset cache
key: ${{ runner.os }}-poetry-184

- name: Add cached Poetry to PATH
if: steps.cached-poetry-install.outputs.cache-hit == 'true'
Expand All @@ -44,7 +44,7 @@ jobs:
if: steps.cached-poetry-install.outputs.cache-hit != 'true'
uses: snok/install-poetry@v1
with:
version: 1.7.1
version: 1.8.4

- name: Create release branch
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.local
key: ${{ runner.os }}-poetry-171 # increment to reset cache
key: ${{ runner.os }}-poetry-184

- name: Add cached Poetry to PATH
if: steps.cached-poetry-install.outputs.cache-hit == 'true'
Expand All @@ -43,7 +43,7 @@ jobs:
if: steps.cached-poetry-install.outputs.cache-hit != 'true'
uses: snok/install-poetry@v1
with:
version: 1.7.1
version: 1.8.4

- name: Load cached venv
id: cached-poetry-dependencies
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~\.local
key: ${{ runner.os }}-poetry-171
key: ${{ runner.os }}-poetry-184

- name: Add cached Poetry to PATH
if: steps.cached-poetry-install.outputs.cache-hit == 'true'
Expand All @@ -50,7 +50,7 @@ jobs:
if: steps.cached-poetry-install.outputs.cache-hit != 'true'
uses: snok/install-poetry@v1
with:
version: 1.7.1
version: 1.8.4

- name: Install python dependencies
run: |
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.local
key: ${{ runner.os }}-poetry-171
key: ${{ runner.os }}-poetry-184

- name: Add cached Poetry to PATH
if: steps.cached-poetry-install.outputs.cache-hit == 'true'
Expand All @@ -109,7 +109,7 @@ jobs:
if: steps.cached-poetry-install.outputs.cache-hit != 'true'
uses: snok/install-poetry@v1
with:
version: 1.7.1
version: 1.8.4

- name: Load cached venv
id: cached-poetry-dependencies
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.local
key: ${{ runner.os }}-poetry-171-1
key: ${{ runner.os }}-poetry-184

- name: Add cached Poetry to PATH
if: steps.cached-poetry-install.outputs.cache-hit == 'true'
Expand All @@ -181,7 +181,7 @@ jobs:
if: steps.cached-poetry-install.outputs.cache-hit != 'true'
uses: snok/install-poetry@v1
with:
version: 1.7.1
version: 1.8.4

- name: Load cached venv
id: cached-poetry-dependencies
Expand Down

0 comments on commit ce9f163

Please sign in to comment.