[pkg-nagios-changes] [Git][nagios-team/pkg-nagios-snmp-plugins][development] 11 commits: build(deps): bump skx/github-action-publish-binaries

Jan Wagner (@waja) gitlab at salsa.debian.org
Wed Nov 9 13:55:19 GMT 2022



Jan Wagner pushed to branch development at Debian Nagios Maintainer Group / pkg-nagios-snmp-plugins


Commits:
4aab014f by dependabot[bot] at 2021-10-12T04:23:19+00:00
build(deps): bump skx/github-action-publish-binaries

Bumps [skx/github-action-publish-binaries](https://github.com/skx/github-action-publish-binaries) from release-0.15 to 2.0. This release includes the previously tagged commit.
- [Release notes](https://github.com/skx/github-action-publish-binaries/releases)
- [Commits](https://github.com/skx/github-action-publish-binaries/compare/release-0.15...release-2.0)

---
updated-dependencies:
- dependency-name: skx/github-action-publish-binaries
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support at github.com>
- - - - -
9811573f by waja at 2021-10-12T06:56:23+02:00
Merge pull request #5 from waja/dependabot-github_actions-skx-github-action-publish-binaries-release-2.0

build(deps): bump skx/github-action-publish-binaries from release-0.15 to 2.0
- - - - -
547ca5d1 by Bas Couwenberg at 2021-10-23T19:33:02+02:00
Update watch file to use tags instead of releases.

- - - - -
9b63fc71 by dependabot[bot] at 2022-03-02T04:24:47+00:00
build(deps): bump actions/checkout from 2 to 3

Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [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/v2...v3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support at github.com>
- - - - -
8f30758d by waja at 2022-03-02T08:06:14+01:00
Merge pull request #6 from waja/dependabot-github_actions-actions-checkout-3


- - - - -
0fef6a8d by Bas Couwenberg at 2022-06-21T07:28:40+02:00
Bump Standards-Version to 4.6.1, no changes.

- - - - -
c1b122a0 by Jan Wagner at 2022-10-20T13:00:33+02:00
Updating build pipelines

- - - - -
f3c51609 by dependabot[bot] at 2022-11-09T04:04:04+00:00
build(deps): bump dawidd6/action-debian-package from 1.4.0 to 1.4.4

Bumps [dawidd6/action-debian-package](https://github.com/dawidd6/action-debian-package) from 1.4.0 to 1.4.4.
- [Release notes](https://github.com/dawidd6/action-debian-package/releases)
- [Commits](https://github.com/dawidd6/action-debian-package/compare/v1.4.0...v1.4.4)

---
updated-dependencies:
- dependency-name: dawidd6/action-debian-package
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support at github.com>
- - - - -
aa599482 by waja at 2022-11-09T13:29:14+01:00
Merge pull request #8 from waja/dependabot-github_actions-dawidd6-action-debian-package-1.4.4

build(deps): bump dawidd6/action-debian-package from 1.4.0 to 1.4.4
- - - - -
1f2afccb by Jan Wagner at 2022-11-09T13:51:39+00:00
Merge branch 'master' into development

- - - - -
0f4afbbb by Jan Wagner at 2022-11-09T13:52:49+00:00
Merge branch 'master' of salsa.debian.org:nagios-team/pkg-nagios-snmp-plugins

- - - - -


4 changed files:

- .github/workflows/packaging_test.yml
- .github/workflows/release.yml
- debian/control
- debian/watch


Changes:

=====================================
.github/workflows/packaging_test.yml
=====================================
@@ -17,16 +17,20 @@ jobs:
   test:
     runs-on: ubuntu-latest
     steps:
-    - uses: actions/checkout at v2
+    - uses: actions/checkout at v3
       env:
         DEBIAN_FRONTEND: "noninteractive"
+    - name: Remove github artefacts
+      run: |
+        rm -rf .github*
     - name: Adjust distibution in changelog file
       run: |
         sed -i '0,/restricted/s//stable/' debian/changelog
     - name: Build Debian package
-      uses: dawidd6/action-debian-package at v1.4.0
+      uses: dawidd6/action-debian-package at v1.4.4
       with:
         artifacts_directory: debian/build/release/
+        os_distribution: testing
     - name: Debug
       run: |
         ls -la


=====================================
.github/workflows/release.yml
=====================================
@@ -18,7 +18,7 @@ jobs:
       release-id: ${{ steps.create_release.outputs.id }}
     steps:
       - name: Checkout code
-        uses: actions/checkout at v2
+        uses: actions/checkout at v3
       - name: Install needed packages
         run: |
           if [ $(dpkg -l | grep -c dpkg-dev) -ne 1 ]; then sudo apt-get update && sudo apt-get install -y dpkg-dev; fi
@@ -43,23 +43,27 @@ jobs:
     needs: create-release
     runs-on: ubuntu-latest
     steps:
-    - uses: actions/checkout at v2
+    - uses: actions/checkout at v3
       env:
         DEBIAN_FRONTEND: "noninteractive"
+    - name: Remove github artefacts
+      run: |
+        rm -rf .github*
     - name: Adjust distibution in changelog file
       run: |
         sed -i '0,/restricted/s//stable/' debian/changelog
     - name: Build Debian package
-      uses: dawidd6/action-debian-package at v1.4.0
+      uses: dawidd6/action-debian-package at v1.4.4
       with:
         artifacts_directory: debian/build/release/
+        os_distribution: testing
 #    - name: Build Debian package
 #      uses: pi-top/action-debian-package at v0.2.0
 #      with:
 #        artifacts_directory: debian/build/release/
 #        target_architectures: "amd64,i386"
     - name: Upload the artifacts
-      uses: skx/github-action-publish-binaries at release-0.15
+      uses: skx/github-action-publish-binaries at release-2.0
       env:
         GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
       with:


=====================================
debian/control
=====================================
@@ -7,7 +7,7 @@ Build-Depends: debhelper-compat (= 12)
 Homepage: https://github.com/SteScho/manubulon-snmp
 Vcs-Browser: https://salsa.debian.org/nagios-team/pkg-nagios-snmp-plugins
 Vcs-Git: https://salsa.debian.org/nagios-team/pkg-nagios-snmp-plugins.git
-Standards-Version: 4.6.0
+Standards-Version: 4.6.1
 
 Package: nagios-snmp-plugins
 Architecture: all


=====================================
debian/watch
=====================================
@@ -1,3 +1,3 @@
 version=4
 opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/nagios-snmp-plugins-$1\.tar\.gz/,uversionmangle=s/(\d)[_\.\-\+]?((RC|rc|pre|dev|beta|alpha)\d*)$/$1-$2/ \
-  https://github.com/SteScho/manubulon-snmp/releases .*/v?(\d\S*)\.tar\.gz
+  https://github.com/SteScho/manubulon-snmp/tags .*/v?(\d\S*)\.tar\.gz



View it on GitLab: https://salsa.debian.org/nagios-team/pkg-nagios-snmp-plugins/-/compare/29710eb01d090d03a9e513218836ae6fc4428960...0f4afbbbddabee35520ac508a15e35049d494e48

-- 
View it on GitLab: https://salsa.debian.org/nagios-team/pkg-nagios-snmp-plugins/-/compare/29710eb01d090d03a9e513218836ae6fc4428960...0f4afbbbddabee35520ac508a15e35049d494e48
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-nagios-changes/attachments/20221109/88534e69/attachment-0001.htm>


More information about the pkg-nagios-changes mailing list