Skip to content

Commit 73bc376

Browse files
Bump actions/upload-artifact from 7.0.0 to 7.0.1
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 7.0.0 to 7.0.1. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@bbbca2d...043fb46) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 24ba3f4 commit 73bc376

13 files changed

Lines changed: 40 additions & 40 deletions

.github/workflows/automatus-cs9.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Test if there are no content changes
4141
run: echo "CTF_OUTPUT_SIZE=$(stat --printf="%s" output.json)" >> $GITHUB_OUTPUT
4242
id: ctf
43-
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
43+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
4444
if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
4545
with:
4646
name: output.json
@@ -58,7 +58,7 @@ jobs:
5858
- name: Build product
5959
if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
6060
run: ./build_product rhel9 --derivatives
61-
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
61+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
6262
if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
6363
with:
6464
name: ${{ env.DATASTREAM }}
@@ -151,7 +151,7 @@ jobs:
151151
continue-on-error: true
152152
- name: Upload logs in case of failure
153153
if: ${{steps.bash.outputs.prop == 'True' && steps.check_results_bash.outcome == 'success' && steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
154-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
154+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
155155
with:
156156
name: logs_bash
157157
path: logs_bash/
@@ -167,7 +167,7 @@ jobs:
167167
continue-on-error: true
168168
- name: Upload logs in case of failure
169169
if: ${{ steps.ansible.outputs.prop == 'True' && steps.check_results_ansible.outcome == 'success' && steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
170-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
170+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
171171
with:
172172
name: logs_ansible
173173
path: logs_ansible/

.github/workflows/automatus-debian12.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Test if there are no content changes
3939
run: echo "CTF_OUTPUT_SIZE=$(stat --printf="%s" output.json)" >> $GITHUB_OUTPUT
4040
id: ctf
41-
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
41+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
4242
if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
4343
with:
4444
name: output.json
@@ -65,7 +65,7 @@ jobs:
6565
- name: Build product
6666
if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
6767
run: ./build_product debian12
68-
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
68+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
6969
if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
7070
with:
7171
name: ${{ env.DATASTREAM }}
@@ -167,7 +167,7 @@ jobs:
167167
continue-on-error: true
168168
- name: Upload logs in case of failure
169169
if: ${{steps.bash.outputs.prop == 'True' && steps.check_results_bash.outcome == 'success' && steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
170-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
170+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
171171
with:
172172
name: logs_bash
173173
path: logs_bash/
@@ -183,7 +183,7 @@ jobs:
183183
continue-on-error: true
184184
- name: Upload logs in case of failure
185185
if: ${{ steps.ansible.outputs.prop == 'True' && steps.check_results_ansible.outcome == 'success' && steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
186-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
186+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
187187
with:
188188
name: logs_ansible
189189
path: logs_ansible/

.github/workflows/automatus-sanity.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
fetch-depth: 0
2323
- name: Build product
2424
run: ./build_product fedora --debug
25-
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
25+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
2626
with:
2727
name: ${{ env.DATASTREAM }}
2828
path: build/${{ env.DATASTREAM }}

.github/workflows/automatus-sle15.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: Test if there are no content changes
4949
run: echo "CTF_OUTPUT_SIZE=$(stat --printf="%s" output.json)" >> $GITHUB_OUTPUT
5050
id: ctf
51-
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
51+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
5252
if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
5353
with:
5454
name: output.json
@@ -66,7 +66,7 @@ jobs:
6666
- name: Build product
6767
if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
6868
run: ./build_product sle15
69-
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
69+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
7070
if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
7171
with:
7272
name: ${{ env.DATASTREAM }}
@@ -159,7 +159,7 @@ jobs:
159159
continue-on-error: true
160160
- name: Upload logs in case of failure
161161
if: ${{steps.bash.outputs.prop == 'True' && steps.check_results_bash.outcome == 'success' && steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
162-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
162+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
163163
with:
164164
name: logs_bash
165165
path: logs_bash/
@@ -175,7 +175,7 @@ jobs:
175175
continue-on-error: true
176176
- name: Upload logs in case of failure
177177
if: ${{ steps.ansible.outputs.prop == 'True' && steps.check_results_ansible.outcome == 'success' && steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
178-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
178+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
179179
with:
180180
name: logs_ansible
181181
path: logs_ansible/

.github/workflows/automatus-ubi8.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Test if there are no content changes
4141
run: echo "CTF_OUTPUT_SIZE=$(stat --printf="%s" output.json)" >> $GITHUB_OUTPUT
4242
id: ctf
43-
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
43+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
4444
if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
4545
with:
4646
name: output.json
@@ -58,7 +58,7 @@ jobs:
5858
- name: Build product
5959
if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
6060
run: ./build_product rhel8 --derivatives
61-
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
61+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
6262
if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
6363
with:
6464
name: ${{ env.DATASTREAM }}
@@ -151,7 +151,7 @@ jobs:
151151
continue-on-error: true
152152
- name: Upload logs in case of failure
153153
if: ${{steps.bash.outputs.prop == 'True' && steps.check_results_bash.outcome == 'success' && steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
154-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
154+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
155155
with:
156156
name: logs_bash
157157
path: logs_bash/
@@ -167,7 +167,7 @@ jobs:
167167
continue-on-error: true
168168
- name: Upload logs in case of failure
169169
if: ${{ steps.ansible.outputs.prop == 'True' && steps.check_results_ansible.outcome == 'success' && steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
170-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
170+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
171171
with:
172172
name: logs_ansible
173173
path: logs_ansible/

.github/workflows/automatus-ubuntu2204.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Test if there are no content changes
3939
run: echo "CTF_OUTPUT_SIZE=$(stat --printf="%s" output.json)" >> $GITHUB_OUTPUT
4040
id: ctf
41-
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
41+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
4242
if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
4343
with:
4444
name: output.json
@@ -65,7 +65,7 @@ jobs:
6565
- name: Build product
6666
if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
6767
run: ./build_product ubuntu2204
68-
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
68+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
6969
if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
7070
with:
7171
name: ${{ env.DATASTREAM }}
@@ -167,7 +167,7 @@ jobs:
167167
continue-on-error: true
168168
- name: Upload logs in case of failure
169169
if: ${{steps.bash.outputs.prop == 'True' && steps.check_results_bash.outcome == 'success' && steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
170-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
170+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
171171
with:
172172
name: logs_bash
173173
path: logs_bash/
@@ -183,7 +183,7 @@ jobs:
183183
continue-on-error: true
184184
- name: Upload logs in case of failure
185185
if: ${{ steps.ansible.outputs.prop == 'True' && steps.check_results_ansible.outcome == 'success' && steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
186-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
186+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
187187
with:
188188
name: logs_ansible
189189
path: logs_ansible/

.github/workflows/automatus-ubuntu2404.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Test if there are no content changes
4141
run: echo "CTF_OUTPUT_SIZE=$(stat --printf="%s" output.json)" >> $GITHUB_OUTPUT
4242
id: ctf
43-
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
43+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
4444
if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
4545
with:
4646
name: output.json
@@ -58,7 +58,7 @@ jobs:
5858
- name: Build product
5959
if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
6060
run: ./build_product ubuntu2404 --datastream-only
61-
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
61+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
6262
if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
6363
with:
6464
name: ${{ env.DATASTREAM }}
@@ -143,7 +143,7 @@ jobs:
143143
continue-on-error: true
144144
- name: Upload logs in case of failure
145145
if: ${{steps.bash.outputs.prop == 'True' && steps.check_results_bash.outcome == 'success' && steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
146-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
146+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
147147
with:
148148
name: logs_bash
149149
path: logs_bash/
@@ -159,7 +159,7 @@ jobs:
159159
continue-on-error: true
160160
- name: Upload logs in case of failure
161161
if: ${{ steps.ansible.outputs.prop == 'True' && steps.check_results_ansible.outcome == 'success' && steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
162-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
162+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
163163
with:
164164
name: logs_ansible
165165
path: logs_ansible/

.github/workflows/automatus.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Test if there are no content changes
3939
run: echo "CTF_OUTPUT_SIZE=$(stat --printf="%s" output.json)" >> $GITHUB_OUTPUT
4040
id: ctf
41-
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
41+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
4242
if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
4343
with:
4444
name: output.json
@@ -56,7 +56,7 @@ jobs:
5656
- name: Build product
5757
if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
5858
run: ./build_product ${{steps.product.outputs.prop}} --datastream-only
59-
- uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
59+
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
6060
if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
6161
with:
6262
name: ssg-${{steps.product.outputs.prop}}-ds.xml
@@ -151,7 +151,7 @@ jobs:
151151
continue-on-error: true
152152
- name: Upload logs in case of failure
153153
if: ${{steps.bash.outputs.prop == 'True' && steps.check_results_bash.outcome == 'success' && steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
154-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
154+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
155155
with:
156156
name: logs_bash
157157
path: logs_bash/
@@ -167,7 +167,7 @@ jobs:
167167
continue-on-error: true
168168
- name: Upload logs in case of failure
169169
if: ${{ steps.ansible.outputs.prop == 'True' && steps.check_results_ansible.outcome == 'success' && steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
170-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
170+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
171171
with:
172172
name: logs_ansible
173173
path: logs_ansible/

.github/workflows/compare-ds-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
tar -czvf artifacts.tar.gz artifacts
6262
- name: Upload artifacts
6363
if: ${{ steps.ctf.outputs.CTF_OUTPUT_SIZE != '0' }}
64-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
64+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
6565
with:
6666
name: pr-artifacts
6767
retention-days: 1
@@ -74,7 +74,7 @@ jobs:
7474
echo "${{ github.base_ref }}" > pr-info/base-branch.txt
7575
echo "${{ steps.fork_point.outputs.FORK_POINT }}" > pr-info/fork-point.txt
7676
- name: Upload PR info
77-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
77+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
7878
with:
7979
name: pr-info
8080
retention-days: 1

.github/workflows/gh-pages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
git-config-name: openscap-ci
6464
git-config-email: openscap-ci@gmail.com
6565
- name: Upload artifact if the event is pull request
66-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v4
66+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v4
6767
if: ${{ github.event_name == 'pull_request' }}
6868
with:
6969
name: built-content

0 commit comments

Comments
 (0)