Skip to content

Commit

Permalink
Bump CI action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisLovering committed Jan 25, 2024
1 parent 98bf39e commit 0221e4a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

# The current version (v2) of Docker's build-push action uses
# buildx, which comes with BuildKit features that help us speed
Expand All @@ -23,10 +23,10 @@ jobs:
#
# See https://github.com/docker/build-push-action
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Login to GHCR.io
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand All @@ -36,7 +36,7 @@ jobs:
# Repository. The container will be tagged as "latest"
# and with the short SHA of the commit.
- name: Build and push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
push: ${{ github.ref == 'refs/heads/main' }}
cache-from: type=registry,ref=ghcr.io/python-discord/king-arthur:latest
Expand All @@ -54,7 +54,7 @@ jobs:
if: ${{ github.ref == 'refs/heads/main' }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: python-discord/infra
path: infra
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Python dependencies
uses: HassanAbouelela/actions/setup-python@setup-python_v1.4.0
uses: HassanAbouelela/actions/setup-python@setup-python_v1.4.2
with:
python_version: '3.11'

Expand Down

0 comments on commit 0221e4a

Please sign in to comment.