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
2 changes: 1 addition & 1 deletion .ci/docker-ci/arch/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM archlinux:base-20220529.0.58327
FROM archlinux/archlinux:base-20221113.0.102202

LABEL maintainer="mail@sobolevn.me"
LABEL vendor="git-secret team"
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/build-man.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@ on:
- '.github/workflows/build-man.yml'
workflow_dispatch:

concurrency:
group: ${{ github.head_ref || github.run_id }}-build-man
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,18 @@ on:
- 'docs/**/*'
- 'utils/*/install.sh'

concurrency:
group: ${{ github.head_ref || github.run_id }}
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write

steps:
- uses: actions/checkout@v6
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/release-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@ on:
- 'Makefile'
- '.github/workflows/release-ci.yml'

permissions:
contents: read

concurrency:
group: ${{ github.head_ref || github.run_id }}
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
workflow_dispatch:

concurrency:
group: ${{ github.head_ref || github.run_id }}
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

jobs:
release-packages:
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@ on:
- 'docs/**'
workflow_dispatch:

concurrency:
group: ${{ github.head_ref || github.run_id }}-test
permissions:
contents: read

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

permissions:
Expand All @@ -34,7 +37,7 @@ jobs:
docker-env:
- alma
- alpine
#- arch # disable arch testing for now, see #916
- arch
- debian-gnupg1 # We need to test legacy version of gnupg
- debian-gnupg2
- fedora
Expand Down
Loading