Skip to content

Commit

Permalink
Cause chaos, update actions to Node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesDearlove committed Mar 9, 2024
1 parent 547c804 commit 6e934ab
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Login against the Docker registry
# https://github.com/docker/login-action
- name: Log into registry ${{ env.REGISTRY }}
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand All @@ -32,7 +32,7 @@ jobs:
# Build and push Docker image with Buildx
# https://github.com/docker/build-push-action
- name: Build and push Docker image
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
push: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-black.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run black
id: runBlack
Expand All @@ -19,7 +19,7 @@ jobs:
version: "23.3.0"

- name: Convert logs to artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always() && (steps.runBlack.outcome == 'failure')
with:
name: "black-logs"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Local action that tries to cache as much of python & poetry as possible
- name: Setup environment
Expand All @@ -34,7 +34,7 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4

# Local action that tries to cache as much of python & poetry as possible
- name: Setup environment
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/setup-python/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ runs:
# Get python
# ------
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}

Expand All @@ -25,7 +25,7 @@ runs:
# ------
- name: Check for cached poetry binary
id: cached-poetry-binary
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.local
# poetry depends on OS, python version, and poetry version
Expand All @@ -50,7 +50,7 @@ runs:
# ------
- name: Check for cached dependencies
id: cached-poetry-dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: '**/.venv'
# poetry dependencies depend on OS, python version, poetry version, and repository lockfile
Expand Down

0 comments on commit 6e934ab

Please sign in to comment.