GitHunt
FR

Frostman/github-actions-cache-server

Self-hosted GitHub Actions cache server implementation. Compatible with official 'actions/cache' action

๐Ÿš€ GitHub Actions Cache Server

This is a drop-in replacement for the official GitHub hosted cache server. It is compatible with the official actions/cache action, so there is no need to change your workflow files and it even works with packages that internally use actions/cache.

Features

  • ๐Ÿ”ฅ Compatible with official actions/cache action
  • ๐Ÿ“ฆ Supports multiple storage solutions and is easily extendable.
  • ๐Ÿ”’ Secure and self-hosted, giving you full control over your cache data.
  • ๐Ÿ˜Ž Easy setup
services:
  cache-server:
    image: ghcr.io/falcondev-oss/github-actions-cache-server
    ports:
      - '3000:3000'
    environment:
      API_BASE_URL: http://localhost:3000
    volumes:
      - cache-data:/app/.data

volumes:
  cache-data:

Documentation

๐Ÿ‘‰ https://gha-cache-server.falcondev.io/getting-started ๐Ÿ‘ˆ

Contributors

MIT License
Created March 17, 2025
Updated March 17, 2025
Frostman/github-actions-cache-server | GitHunt