mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-03 15:41:02 +01:00
ci: bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
parent
3d6c1c8fa0
commit
7702d14879
7 changed files with 8 additions and 8 deletions
2
.github/workflows/backport.yml
vendored
2
.github/workflows/backport.yml
vendored
|
|
@ -31,7 +31,7 @@ jobs:
|
||||||
with:
|
with:
|
||||||
app-id: ${{ vars.CI_APP_ID }}
|
app-id: ${{ vars.CI_APP_ID }}
|
||||||
private-key: ${{ secrets.CI_APP_PRIVATE_KEY }}
|
private-key: ${{ secrets.CI_APP_PRIVATE_KEY }}
|
||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
token: ${{ steps.app-token.outputs.token || secrets.GITHUB_TOKEN }}
|
token: ${{ steps.app-token.outputs.token || secrets.GITHUB_TOKEN }}
|
||||||
ref: ${{ github.event.pull_request.head.sha }}
|
ref: ${{ github.event.pull_request.head.sha }}
|
||||||
|
|
|
||||||
2
.github/workflows/github_pages.yml
vendored
2
.github/workflows/github_pages.yml
vendored
|
|
@ -12,7 +12,7 @@ jobs:
|
||||||
os: [ubuntu-latest]
|
os: [ubuntu-latest]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v6
|
||||||
- uses: cachix/install-nix-action@v31
|
- uses: cachix/install-nix-action@v31
|
||||||
with:
|
with:
|
||||||
nix_path: nixpkgs=channel:nixos-unstable
|
nix_path: nixpkgs=channel:nixos-unstable
|
||||||
|
|
|
||||||
2
.github/workflows/tag-maintainers.yml
vendored
2
.github/workflows/tag-maintainers.yml
vendored
|
|
@ -23,7 +23,7 @@ jobs:
|
||||||
app-id: ${{ vars.CI_APP_ID }}
|
app-id: ${{ vars.CI_APP_ID }}
|
||||||
private-key: ${{ secrets.CI_APP_PRIVATE_KEY }}
|
private-key: ${{ secrets.CI_APP_PRIVATE_KEY }}
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event.pull_request.base.sha }}
|
ref: ${{ github.event.pull_request.base.sha }}
|
||||||
- name: Get Nixpkgs revision from flake.lock
|
- name: Get Nixpkgs revision from flake.lock
|
||||||
|
|
|
||||||
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
|
|
@ -15,7 +15,7 @@ jobs:
|
||||||
hm: ${{ steps.changes.outputs.hm }}
|
hm: ${{ steps.changes.outputs.hm }}
|
||||||
tests: ${{ steps.changes.outputs.tests }}
|
tests: ${{ steps.changes.outputs.tests }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v6
|
||||||
- uses: dorny/paths-filter@v3
|
- uses: dorny/paths-filter@v3
|
||||||
id: changes
|
id: changes
|
||||||
with:
|
with:
|
||||||
|
|
@ -47,7 +47,7 @@ jobs:
|
||||||
os: [ubuntu-latest, macos-latest]
|
os: [ubuntu-latest, macos-latest]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v5
|
- uses: actions/checkout@v6
|
||||||
- name: Get Nixpkgs revision from flake.lock
|
- name: Get Nixpkgs revision from flake.lock
|
||||||
id: get-nixpkgs
|
id: get-nixpkgs
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
2
.github/workflows/update-flake.yml
vendored
2
.github/workflows/update-flake.yml
vendored
|
|
@ -34,7 +34,7 @@ jobs:
|
||||||
echo "email=$id+$name@users.noreply.github.com"
|
echo "email=$id+$name@users.noreply.github.com"
|
||||||
} >> "$GITHUB_OUTPUT"
|
} >> "$GITHUB_OUTPUT"
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
ref: ${{ matrix.branch }}
|
ref: ${{ matrix.branch }}
|
||||||
token: ${{ steps.app-token.outputs.token || secrets.GITHUB_TOKEN }}
|
token: ${{ steps.app-token.outputs.token || secrets.GITHUB_TOKEN }}
|
||||||
|
|
|
||||||
2
.github/workflows/update-maintainers.yml
vendored
2
.github/workflows/update-maintainers.yml
vendored
|
|
@ -48,7 +48,7 @@ jobs:
|
||||||
echo "email=$id+$name@users.noreply.github.com"
|
echo "email=$id+$name@users.noreply.github.com"
|
||||||
} >> "$GITHUB_OUTPUT"
|
} >> "$GITHUB_OUTPUT"
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
token: ${{ steps.app-token.outputs.token || github.token }}
|
token: ${{ steps.app-token.outputs.token || github.token }}
|
||||||
- name: Get Nixpkgs revision from flake.lock
|
- name: Get Nixpkgs revision from flake.lock
|
||||||
|
|
|
||||||
2
.github/workflows/validate-maintainers.yml
vendored
2
.github/workflows/validate-maintainers.yml
vendored
|
|
@ -15,7 +15,7 @@ jobs:
|
||||||
if: github.repository_owner == 'nix-community'
|
if: github.repository_owner == 'nix-community'
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v5
|
uses: actions/checkout@v6
|
||||||
- name: Get Nixpkgs revision from flake.lock
|
- name: Get Nixpkgs revision from flake.lock
|
||||||
id: get-nixpkgs
|
id: get-nixpkgs
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue