Skip to content

Commit 7e2e59f

Browse files
committed
chore: fix ci/cd workflow definitions
1 parent 7a0219b commit 7e2e59f

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/linux-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@ jobs:
4949
egress-policy: audit
5050

5151
- name: 'checkout the monitoring-plugins repo'
52-
uses: 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2'
52+
uses: 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683' # v4.2.2
5353
with:
5454
path: '${{ env.BASE_DIR }}/repos/monitoring-plugins'
5555

5656
- name: 'checkout the lib repo'
57-
uses: 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2'
57+
uses: 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683' # v4.2.2
5858
with:
5959
repository: 'Linuxfabrik/lib'
6060
ref: '${{ inputs.lib-repo-ref || github.ref_name }}'
@@ -344,7 +344,7 @@ jobs:
344344
egress-policy: audit
345345

346346
- name: 'upload the output as monitoring-plugins-linux-packages'
347-
uses: 'actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0'
347+
uses: 'actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b' # v4.5.0
348348
with:
349349
name: 'monitoring-plugins-linux-packages'
350350
path: '${{ env.BASE_DIR }}/build/'

.github/workflows/linux-test-packages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
egress-policy: audit
3939

4040
- name: 'checkout the monitoring-plugins repo'
41-
uses: 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2'
41+
uses: 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683' # v4.2.2
4242
with:
4343
path: '${{ env.BASE_DIR }}/repos/monitoring-plugins'
4444
ref: '${{ github.event.workflow_run.head_sha }}'
@@ -350,7 +350,7 @@ jobs:
350350
egress-policy: audit
351351

352352
- name: 'upload the output as monitoring-plugins-test-output'
353-
uses: 'actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0'
353+
uses: 'actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b' # v4.5.0
354354
with:
355355
name: 'monitoring-plugins-test-output'
356356
path: '${{ env.BASE_DIR }}/output/'

.github/workflows/nuitka-compile.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
egress-policy: audit
3434

3535
- name: 'checkout the monitoring-plugins repo'
36-
uses: 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2'
36+
uses: 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683' # v4.2.2
3737

3838
- name: 'create list of windows checks'
3939
run: |
@@ -71,19 +71,19 @@ jobs:
7171
egress-policy: audit
7272

7373
- name: 'checkout the monitoring-plugins repo'
74-
uses: 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2'
74+
uses: 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683' # v4.2.2
7575
with:
7676
# Relative path under $GITHUB_WORKSPACE to place the repository
7777
path: 'monitoring-plugins'
7878

7979
- name: 'checkout the lib repo'
80-
uses: 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2'
80+
uses: 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683' # v4.2.2
8181
with:
8282
repository: 'Linuxfabrik/lib'
8383
path: 'lib'
8484

8585
- name: 'install python3.11'
86-
uses: 'actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1'
86+
uses: 'actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236' # v4.7.1
8787
with:
8888
python-version: '3.11' # update as soon as nuitka supports latest python
8989

@@ -101,7 +101,7 @@ jobs:
101101
- run: 'python.exe -m nuitka --assume-yes-for-downloads --mingw64 --follow-imports --include-plugin-directory="${{ github.workspace }}\lib" --output-dir=C:\nuitka-compile-temp --remove-output --standalone ${{ github.workspace }}\monitoring-plugins\check-plugins\${{ matrix.check }}\${{ matrix.check}}'
102102

103103
- name: 'Upload build output as artifact for later zipping'
104-
uses: 'actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0'
104+
uses: 'actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b' # v4.5.0
105105
with:
106106
name: 'nuitka-build-output-${{ matrix.check }}'
107107
path: 'C:\nuitka-compile-temp\${{ matrix.check }}*'
@@ -122,7 +122,7 @@ jobs:
122122
egress-policy: audit
123123

124124
- name: 'download all artifacts'
125-
uses: 'actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8'
125+
uses: 'actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16' # v4.1.8
126126
with:
127127
path: 'C:\artifacts'
128128

@@ -138,7 +138,7 @@ jobs:
138138
done
139139
140140
- name: 'upload the output as monitoring-plugins'
141-
uses: 'actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0'
141+
uses: 'actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b' # v4.5.0
142142
with:
143143
name: 'monitoring-plugins'
144144
path: 'C:\output\'

0 commit comments

Comments
 (0)