From 310008860c581f329803bcdd22377aa817e32428 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Sun, 14 Jul 2024 17:00:41 -0400 Subject: [PATCH] github: pull latest actions from master/main --- .github/workflows/flake-checks.yml | 8 ++++---- .github/workflows/flake-update-inputs.yml | 4 ++-- .github/workflows/flakehub-publish-rolling.yml | 2 +- .github/workflows/git-sync-mirrors.yml | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/flake-checks.yml b/.github/workflows/flake-checks.yml index ee68db68..0599a7a7 100644 --- a/.github/workflows/flake-checks.yml +++ b/.github/workflows/flake-checks.yml @@ -6,20 +6,20 @@ on: - '_img/**' workflow_dispatch: jobs: - check-format: + fmt-check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@main with: fetch-depth: 1 - name: Install Nix uses: DeterminateSystems/nix-installer-action@main - name: check if flake complies with default style run: nix fmt -- -c . - check-eval: + eval-check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@main with: fetch-depth: 1 - name: Install Nix diff --git a/.github/workflows/flake-update-inputs.yml b/.github/workflows/flake-update-inputs.yml index d234c6bb..73b26d37 100644 --- a/.github/workflows/flake-update-inputs.yml +++ b/.github/workflows/flake-update-inputs.yml @@ -4,10 +4,10 @@ on: - cron: "0 0 * * 0" workflow_dispatch: jobs: - update-inputs: + inputs-update: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@main with: ref: ${{ github.head_ref }} fetch-depth: 1 diff --git a/.github/workflows/flakehub-publish-rolling.yml b/.github/workflows/flakehub-publish-rolling.yml index 69b1074b..37adcfde 100644 --- a/.github/workflows/flakehub-publish-rolling.yml +++ b/.github/workflows/flakehub-publish-rolling.yml @@ -10,7 +10,7 @@ jobs: id-token: "write" contents: "read" steps: - - uses: "actions/checkout@v3" + - uses: "actions/checkout@main" - uses: "DeterminateSystems/nix-installer-action@main" - uses: "DeterminateSystems/flakehub-push@main" with: diff --git a/.github/workflows/git-sync-mirrors.yml b/.github/workflows/git-sync-mirrors.yml index b62acc1f..dd24d2dd 100644 --- a/.github/workflows/git-sync-mirrors.yml +++ b/.github/workflows/git-sync-mirrors.yml @@ -5,15 +5,15 @@ on: - master workflow_dispatch: jobs: - sync-gitlab: + gitlab-sync: runs-on: ubuntu-latest steps: - name: check out repository - uses: actions/checkout@v4 + uses: actions/checkout@main with: fetch-depth: 0 - name: "sync gitlab mirror" - uses: yesolutions/mirror-action@v0.7.0 + uses: yesolutions/mirror-action@master with: REMOTE: 'https://gitlab.com/alyraffauf/nixcfg.git' GIT_USERNAME: alyraffauf