CI: use v4 of Calamares actions
This commit is contained in:
parent
24026af32a
commit
91e1087eb9
4
.github/workflows/issues.yml
vendored
4
.github/workflows/issues.yml
vendored
@ -10,14 +10,14 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: "notify: new"
|
- name: "notify: new"
|
||||||
if: github.event.issue.state == 'open'
|
if: github.event.issue.state == 'open'
|
||||||
uses: calamares/actions/matrix-notify@v3
|
uses: calamares/actions/matrix-notify@v4
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.MATRIX_TOKEN }}
|
token: ${{ secrets.MATRIX_TOKEN }}
|
||||||
room: ${{ secrets.MATRIX_ROOM }}
|
room: ${{ secrets.MATRIX_ROOM }}
|
||||||
message: "OPENED ${{ github.event.issue.html_url }} by ${{ github.actor }} ${{ github.event.issue.title }}"
|
message: "OPENED ${{ github.event.issue.html_url }} by ${{ github.actor }} ${{ github.event.issue.title }}"
|
||||||
- name: "notify: closed"
|
- name: "notify: closed"
|
||||||
if: github.event.issue.state != 'open'
|
if: github.event.issue.state != 'open'
|
||||||
uses: calamares/actions/matrix-notify@v3
|
uses: calamares/actions/matrix-notify@v4
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.MATRIX_TOKEN }}
|
token: ${{ secrets.MATRIX_TOKEN }}
|
||||||
room: ${{ secrets.MATRIX_ROOM }}
|
room: ${{ secrets.MATRIX_ROOM }}
|
||||||
|
8
.github/workflows/nightly-debian.yml
vendored
8
.github/workflows/nightly-debian.yml
vendored
@ -22,22 +22,22 @@ jobs:
|
|||||||
options: --tmpfs /build:rw --user 0:0
|
options: --tmpfs /build:rw --user 0:0
|
||||||
steps:
|
steps:
|
||||||
- name: "prepare env"
|
- name: "prepare env"
|
||||||
uses: calamares/actions/prepare-debian@v3
|
uses: calamares/actions/prepare-debian@v4
|
||||||
- name: "prepare source"
|
- name: "prepare source"
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: "build"
|
- name: "build"
|
||||||
id: build
|
id: build
|
||||||
uses: calamares/actions/generic-build@v3
|
uses: calamares/actions/generic-build@v4
|
||||||
- name: "notify: ok"
|
- name: "notify: ok"
|
||||||
if: ${{ success() && github.repository == 'calamares/calamares' }}
|
if: ${{ success() && github.repository == 'calamares/calamares' }}
|
||||||
uses: calamares/actions/matrix-notify@v3
|
uses: calamares/actions/matrix-notify@v4
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.MATRIX_TOKEN }}
|
token: ${{ secrets.MATRIX_TOKEN }}
|
||||||
room: ${{ secrets.MATRIX_ROOM }}
|
room: ${{ secrets.MATRIX_ROOM }}
|
||||||
message: "OK ${{ github.workflow }} in ${{ github.repository }} ${{ steps.build.outputs.git-summary }}"
|
message: "OK ${{ github.workflow }} in ${{ github.repository }} ${{ steps.build.outputs.git-summary }}"
|
||||||
- name: "notify: fail"
|
- name: "notify: fail"
|
||||||
if: ${{ failure() && github.repository == 'calamares/calamares' }}
|
if: ${{ failure() && github.repository == 'calamares/calamares' }}
|
||||||
uses: calamares/actions/matrix-notify@v3
|
uses: calamares/actions/matrix-notify@v4
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.MATRIX_TOKEN }}
|
token: ${{ secrets.MATRIX_TOKEN }}
|
||||||
room: ${{ secrets.MATRIX_ROOM }}
|
room: ${{ secrets.MATRIX_ROOM }}
|
||||||
|
8
.github/workflows/nightly-neon.yml
vendored
8
.github/workflows/nightly-neon.yml
vendored
@ -22,12 +22,12 @@ jobs:
|
|||||||
options: --tmpfs /build:rw --user 0:0
|
options: --tmpfs /build:rw --user 0:0
|
||||||
steps:
|
steps:
|
||||||
- name: "prepare env"
|
- name: "prepare env"
|
||||||
uses: calamares/actions/prepare-neon@v3
|
uses: calamares/actions/prepare-neon@v4
|
||||||
- name: "prepare source"
|
- name: "prepare source"
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: "build"
|
- name: "build"
|
||||||
id: build
|
id: build
|
||||||
uses: calamares/actions/generic-build@v3
|
uses: calamares/actions/generic-build@v4
|
||||||
- name: "Calamares: archive"
|
- name: "Calamares: archive"
|
||||||
working-directory: ${{ env.BUILDDIR }}
|
working-directory: ${{ env.BUILDDIR }}
|
||||||
run: |
|
run: |
|
||||||
@ -42,14 +42,14 @@ jobs:
|
|||||||
retention-days: 3
|
retention-days: 3
|
||||||
- name: "notify: ok"
|
- name: "notify: ok"
|
||||||
if: ${{ success() && github.repository == 'calamares/calamares' }}
|
if: ${{ success() && github.repository == 'calamares/calamares' }}
|
||||||
uses: calamares/actions/matrix-notify@v3
|
uses: calamares/actions/matrix-notify@v4
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.MATRIX_TOKEN }}
|
token: ${{ secrets.MATRIX_TOKEN }}
|
||||||
room: ${{ secrets.MATRIX_ROOM }}
|
room: ${{ secrets.MATRIX_ROOM }}
|
||||||
message: "OK ${{ github.workflow }} in ${{ github.repository }} ${{ steps.build.outputs.git-summary }}"
|
message: "OK ${{ github.workflow }} in ${{ github.repository }} ${{ steps.build.outputs.git-summary }}"
|
||||||
- name: "notify: fail"
|
- name: "notify: fail"
|
||||||
if: ${{ failure() && github.repository == 'calamares/calamares' }}
|
if: ${{ failure() && github.repository == 'calamares/calamares' }}
|
||||||
uses: calamares/actions/matrix-notify@v3
|
uses: calamares/actions/matrix-notify@v4
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.MATRIX_TOKEN }}
|
token: ${{ secrets.MATRIX_TOKEN }}
|
||||||
room: ${{ secrets.MATRIX_ROOM }}
|
room: ${{ secrets.MATRIX_ROOM }}
|
||||||
|
8
.github/workflows/nightly-opensuse.yml
vendored
8
.github/workflows/nightly-opensuse.yml
vendored
@ -22,15 +22,15 @@ jobs:
|
|||||||
options: --tmpfs /build:rw --user 0:0
|
options: --tmpfs /build:rw --user 0:0
|
||||||
steps:
|
steps:
|
||||||
- name: "prepare env"
|
- name: "prepare env"
|
||||||
uses: calamares/actions/prepare-opensuse@v3
|
uses: calamares/actions/prepare-opensuse@v4
|
||||||
- name: "prepare source"
|
- name: "prepare source"
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: "build"
|
- name: "build"
|
||||||
id: build
|
id: build
|
||||||
uses: calamares/actions/generic-build@v3
|
uses: calamares/actions/generic-build@v4
|
||||||
- name: "notify: ok"
|
- name: "notify: ok"
|
||||||
if: ${{ success() && github.repository == 'calamares/calamares' }}
|
if: ${{ success() && github.repository == 'calamares/calamares' }}
|
||||||
uses: calamares/actions/matrix-notify@v3
|
uses: calamares/actions/matrix-notify@v4
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.MATRIX_TOKEN }}
|
token: ${{ secrets.MATRIX_TOKEN }}
|
||||||
room: ${{ secrets.MATRIX_ROOM }}
|
room: ${{ secrets.MATRIX_ROOM }}
|
||||||
@ -38,7 +38,7 @@ jobs:
|
|||||||
OK ${{ github.workflow }} in ${{ github.repository }} ${{ steps.build.outputs.git-summary }}"
|
OK ${{ github.workflow }} in ${{ github.repository }} ${{ steps.build.outputs.git-summary }}"
|
||||||
- name: "notify: fail"
|
- name: "notify: fail"
|
||||||
if: ${{ failure() && github.repository == 'calamares/calamares' }}
|
if: ${{ failure() && github.repository == 'calamares/calamares' }}
|
||||||
uses: calamares/actions/matrix-notify@v3
|
uses: calamares/actions/matrix-notify@v4
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.MATRIX_TOKEN }}
|
token: ${{ secrets.MATRIX_TOKEN }}
|
||||||
room: ${{ secrets.MATRIX_ROOM }}
|
room: ${{ secrets.MATRIX_ROOM }}
|
||||||
|
10
.github/workflows/push.yml
vendored
10
.github/workflows/push.yml
vendored
@ -29,15 +29,15 @@ jobs:
|
|||||||
options: --tmpfs /build:rw --user 0:0
|
options: --tmpfs /build:rw --user 0:0
|
||||||
steps:
|
steps:
|
||||||
- name: "prepare env"
|
- name: "prepare env"
|
||||||
uses: calamares/actions/prepare-neon@v3
|
uses: calamares/actions/prepare-neon@v4
|
||||||
- name: "prepare source"
|
- name: "prepare source"
|
||||||
uses: calamares/actions/generic-checkout@fe2dd4aefc1fec6fa74f00677e5c51d68e2c19ae
|
uses: calamares/actions/generic-checkout@v4
|
||||||
- name: "build"
|
- name: "build"
|
||||||
id: build
|
id: build
|
||||||
uses: calamares/actions/generic-build@v3
|
uses: calamares/actions/generic-build@v4
|
||||||
- name: "notify: ok"
|
- name: "notify: ok"
|
||||||
if: ${{ success() && github.repository == 'calamares/calamares' }}
|
if: ${{ success() && github.repository == 'calamares/calamares' }}
|
||||||
uses: calamares/actions/matrix-notify@v3
|
uses: calamares/actions/matrix-notify@v4
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.MATRIX_TOKEN }}
|
token: ${{ secrets.MATRIX_TOKEN }}
|
||||||
room: ${{ secrets.MATRIX_ROOM }}
|
room: ${{ secrets.MATRIX_ROOM }}
|
||||||
@ -46,7 +46,7 @@ jobs:
|
|||||||
.. ${{ steps.build.outputs.git-summary }}
|
.. ${{ steps.build.outputs.git-summary }}
|
||||||
- name: "notify: fail"
|
- name: "notify: fail"
|
||||||
if: ${{ failure() && github.repository == 'calamares/calamares' }}
|
if: ${{ failure() && github.repository == 'calamares/calamares' }}
|
||||||
uses: calamares/actions/matrix-notify@v3
|
uses: calamares/actions/matrix-notify@v4
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.MATRIX_TOKEN }}
|
token: ${{ secrets.MATRIX_TOKEN }}
|
||||||
room: ${{ secrets.MATRIX_ROOM }}
|
room: ${{ secrets.MATRIX_ROOM }}
|
||||||
|
Loading…
Reference in New Issue
Block a user