Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
18 changes: 9 additions & 9 deletions .github/workflows/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
VITE_ADMIN_EMAIL: desecho@gmail.com
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.12.0
uses: docker/setup-buildx-action@v4.1.0

- name: Login to GitHub registry
uses: docker/login-action@v3.7.0
uses: docker/login-action@v4.2.0
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -38,7 +38,7 @@ jobs:
uses: actions/checkout@v6.0.2

- name: Build and push docker backend image
uses: docker/build-push-action@v6.18.0
uses: docker/build-push-action@v7.2.0
with:
push: true
tags: ghcr.io/${{ github.repository }}-backend:latest
Expand All @@ -47,7 +47,7 @@ jobs:
context: .

- name: Build and push docker frontend image
uses: docker/build-push-action@v6.18.0
uses: docker/build-push-action@v7.2.0
with:
context: ./frontend
build-args: |
Expand Down Expand Up @@ -80,13 +80,13 @@ jobs:
# cache-dependency-path: uv.lock

- name: Use pip cache
uses: actions/cache@v5.0.3
uses: actions/cache@v5.0.5
with:
path: ~/.cache/pip
key: pip

- name: Use venv cache
uses: actions/cache@v5.0.3
uses: actions/cache@v5.0.5
with:
path: .venv
key: venv-${{ hashFiles('uv.lock') }}
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
source: static

- name: Install doctl
uses: digitalocean/action-doctl@v2.5.1
uses: digitalocean/action-doctl@v2.5.2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}

Expand All @@ -141,7 +141,7 @@ jobs:
uses: actions/checkout@v6.0.2

- name: Install kubectl
uses: azure/setup-kubectl@v4.0.1
uses: azure/setup-kubectl@v5.1.0

- name: Configure kubectl
run: |
Expand All @@ -151,7 +151,7 @@ jobs:
KUBECONFIG: ${{ secrets.KUBECONFIG }} # Done as a variable because it doesn't work in place.

- name: Install doctl
uses: digitalocean/action-doctl@v2.5.1
uses: digitalocean/action-doctl@v2.5.2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/destruction.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v6.0.2

- name: Install kubectl
uses: azure/setup-kubectl@v4.0.1
uses: azure/setup-kubectl@v5.1.0

- name: Configure kubectl
run: |
Expand All @@ -24,7 +24,7 @@ jobs:
KUBECONFIG: ${{ secrets.KUBECONFIG }} # Done as a variable because it doesn't work in place.

- name: Install doctl
uses: digitalocean/action-doctl@v2.5.1
uses: digitalocean/action-doctl@v2.5.2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/remove_unused_games.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@v6.0.2

- name: Install kubectl
uses: azure/setup-kubectl@v4.0.1
uses: azure/setup-kubectl@v5.1.0

- name: Configure kubectl
run: |
Expand All @@ -25,7 +25,7 @@ jobs:
KUBECONFIG: ${{ secrets.KUBECONFIG }} # Done as a variable because it doesn't work in place.

- name: Install doctl
uses: digitalocean/action-doctl@v2.5.1
uses: digitalocean/action-doctl@v2.5.2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable_restart_app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
uses: actions/checkout@v6.0.2

- name: Install kubectl
uses: azure/setup-kubectl@v4.0.1
uses: azure/setup-kubectl@v5.1.0

- name: Configure kubectl
run: |
Expand All @@ -23,7 +23,7 @@ jobs:
KUBECONFIG: ${{ secrets.KUBECONFIG }} # Done as a variable because it doesn't work in place.

- name: Install doctl
uses: digitalocean/action-doctl@v2.5.1
uses: digitalocean/action-doctl@v2.5.2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/reusable_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
# cache-dependency-path: uv.lock

- name: Use pip cache
uses: actions/cache@v5.0.3
uses: actions/cache@v5.0.5
with:
path: ~/.cache/pip
key: pip

- name: Set up Node.js
uses: actions/setup-node@v6.2.0
uses: actions/setup-node@v6.4.0
with:
node-version: 22.x
registry-url: https://registry.npmjs.org
Expand All @@ -34,7 +34,7 @@ jobs:
# cache-dependency-path: frontend/yarn.lock

- name: Use tox cache
uses: actions/cache@v5.0.3
uses: actions/cache@v5.0.5
with:
path: .tox
key: tox-${{ hashFiles('uv.lock') }}
Expand All @@ -44,7 +44,7 @@ jobs:
run: echo "dir=$(yarn cache dir)" >> "$GITHUB_OUTPUT"

- name: Use yarn cache
uses: actions/cache@v5.0.3
uses: actions/cache@v5.0.5
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: yarn-${{ hashFiles('frontend/yarn.lock') }}
Expand Down Expand Up @@ -74,4 +74,4 @@ jobs:
run: make test

- name: Run codecov
uses: codecov/codecov-action@v5.5.2
uses: codecov/codecov-action@v6.0.1
4 changes: 2 additions & 2 deletions .github/workflows/update_games_data.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@v6.0.2

- name: Install kubectl
uses: azure/setup-kubectl@v4.0.1
uses: azure/setup-kubectl@v5.1.0

- name: Configure kubectl
run: |
Expand All @@ -25,7 +25,7 @@ jobs:
KUBECONFIG: ${{ secrets.KUBECONFIG }} # Done as a variable because it doesn't work in place.

- name: Install doctl
uses: digitalocean/action-doctl@v2.5.1
uses: digitalocean/action-doctl@v2.5.2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}

Expand Down