diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-05-22 17:19:52 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-05-22 17:19:52 +0300 |
commit | e2d322e1462db734a3ab5275341dbe59e2599865 (patch) | |
tree | 854608769995825334a5d92f940c12f60cea7da7 /.github/workflows | |
parent | 3b260e636a35df5898dfefaa47560a179f562da8 (diff) | |
download | sciteco-e2d322e1462db734a3ab5275341dbe59e2599865.tar.gz |
updated CI workflows: bumped some versions
* MacOS packages are now built on macos-12 since macos-11 has been deprecated.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 6 | ||||
-rw-r--r-- | .github/workflows/nightly.yml | 18 |
2 files changed, 12 insertions, 12 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9108b5a..3044d29 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Git Clone - uses: actions/checkout@v2 + uses: actions/checkout@v4.1.6 with: submodules: true @@ -61,7 +61,7 @@ jobs: steps: - name: Git Clone - uses: actions/checkout@v2 + uses: actions/checkout@v4.1.6 with: submodules: true @@ -105,7 +105,7 @@ jobs: steps: - name: Git Clone - uses: actions/checkout@v2 + uses: actions/checkout@v4.1.6 with: submodules: true diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 2f14dbf..ba5af31 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Git Clone - uses: actions/checkout@v2 + uses: actions/checkout@v4.1.6 with: submodules: true @@ -48,19 +48,19 @@ jobs: cp debian-temp/sciteco-common_*.deb sciteco-common_nightly_${{matrix.os}}_all.deb - name: Archive Debian/Ubuntu Packages - uses: pyTooling/Actions/releaser@v0.4.6 + uses: pyTooling/Actions/releaser@v1.0.5 with: token: ${{ secrets.GITHUB_TOKEN }} tag: nightly files: ./*.deb macos: - runs-on: macos-11 + runs-on: macos-12 steps: - name: Git Clone - uses: actions/checkout@v2 + uses: actions/checkout@v4.1.6 with: submodules: true @@ -124,7 +124,7 @@ jobs: --root temp-install --install-location / \ sciteco-curses_nightly_macos_x86_64.pkg - name: Archive Mac OS Distribution (ncurses) - uses: pyTooling/Actions/releaser/composite@v0.4.6 + uses: pyTooling/Actions/releaser/composite@v1.0.5 with: token: ${{ secrets.GITHUB_TOKEN }} tag: nightly @@ -143,7 +143,7 @@ jobs: steps: - name: Git Clone - uses: actions/checkout@v2 + uses: actions/checkout@v4.1.6 with: submodules: true @@ -216,7 +216,7 @@ jobs: for f in *.exe; do ../contrib/mingw-bundledlls --copy $f; done zip -9 -r ../sciteco-pdcurses_nightly_win32.zip . - name: Archive Windows Distribution (PDCurses) - uses: pyTooling/Actions/releaser/composite@v0.4.6 + uses: pyTooling/Actions/releaser/composite@v1.0.5 with: token: ${{ secrets.GITHUB_TOKEN }} tag: nightly @@ -239,7 +239,7 @@ jobs: steps: - name: Git Clone - uses: actions/checkout@v2 + uses: actions/checkout@v4.1.6 with: submodules: true @@ -312,7 +312,7 @@ jobs: cp ../win32/loaders.cache lib/gdk-pixbuf-2.0/2.10.0/ zip -9 -r ../sciteco-gtk3_nightly_win32.zip . - name: Archive Windows Distribution (GTK+ 3) - uses: pyTooling/Actions/releaser/composite@v0.4.6 + uses: pyTooling/Actions/releaser/composite@v1.0.5 with: token: ${{ secrets.GITHUB_TOKEN }} tag: nightly |