Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/actions/docker/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ runs:
using: composite
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
uses: docker/setup-qemu-action@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4
- name: "Put back the git branch into git (Earthly uses it for tagging)"
shell: bash
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/nix/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ runs:
- name: Install Nix
uses: cachix/install-nix-action@v31
- name: Cache dependencies
uses: nix-community/cache-nix-action@v6
uses: nix-community/cache-nix-action@v7
with:
primary-key: nix-${{ runner.os }}-${{ hashFiles('**/flake.nix', '**/flake.lock') }}
restore-prefixes-first-match: nix-${{ runner.os }}-
- name: Load dependencies
shell: bash
run: nix develop --install
- uses: actions/cache@v4
- uses: actions/cache@v5
with:
path: |
~/.cache/go-build
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
permissions:
statuses: write
steps:
- uses: amannn/action-semantic-pull-request@v5
- uses: amannn/action-semantic-pull-request@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Dirty:
runs-on: "shipfox-4vcpu-ubuntu-2404"
steps:
- uses: 'actions/checkout@v4'
- uses: 'actions/checkout@v6'
with:
fetch-depth: 0
- name: Setup Nix
Expand All @@ -52,7 +52,7 @@ jobs:
Tests:
runs-on: "shipfox-4vcpu-ubuntu-2404"
steps:
- uses: 'actions/checkout@v4'
- uses: 'actions/checkout@v6'
with:
fetch-depth: 0
- name: Setup Nix
Expand All @@ -68,15 +68,15 @@ jobs:
runs-on: "shipfox-4vcpu-ubuntu-2404"
if: contains(github.event.pull_request.labels.*.name, 'build-images') || github.ref == 'refs/heads/main' || github.event_name == 'merge_group'
steps:
- uses: 'actions/checkout@v4'
- uses: 'actions/checkout@v6'
with:
fetch-depth: 0
- name: Setup Nix
uses: ./.github/actions/nix
with:
token: ${{ secrets.NUMARY_GITHUB_TOKEN }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: "NumaryBot"
Expand All @@ -102,11 +102,11 @@ jobs:
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
version: "latest"
- uses: 'actions/checkout@v4'
- uses: 'actions/checkout@v6'
with:
fetch-depth: 0
- name: Tailscale
uses: tailscale/github-action@v3
uses: tailscale/github-action@v4
with:
oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }}
oauth-secret: ${{ secrets.TS_OAUTH_SECRET }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:
GoReleaser:
runs-on: "shipfox-4vcpu-ubuntu-2404"
steps:
- uses: 'actions/checkout@v4'
- uses: 'actions/checkout@v6'
with:
fetch-depth: 0
- name: Setup Nix
uses: ./.github/actions/nix
with:
token: ${{ secrets.NUMARY_GITHUB_TOKEN }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: "NumaryBot"
Expand Down
Loading