Skip to content

Commit 2a1e0cb

Browse files
build(deps): bump actions/upload-artifact from 7.0.0 to 7.0.1 (#1040)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 7.0.0 to 7.0.1. Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 58cd8dd commit 2a1e0cb

5 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/_build_deb_reusable.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,25 +60,25 @@ jobs:
6060
rake apt:build APT_TARGETS=${{ inputs.rake-job }} ${{ inputs.rake-options }}
6161
- name: Upload fluent-package deb
6262
if: ${{ ! inputs.next-major }}
63-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
63+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
6464
with:
6565
name: packages-${{ inputs.rake-job }}
6666
path: fluent-package/apt/repositories
6767
- name: Upload fluent-apt-source deb
6868
if: ${{ ! inputs.next-major }}
69-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
69+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
7070
with:
7171
name: packages-apt-source-${{ inputs.rake-job }}
7272
path: fluent-apt-source/apt/repositories
7373
- name: Upload fluent-lts-apt-source deb
7474
if: ${{ ! inputs.next-major }}
75-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
75+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
7676
with:
7777
name: packages-lts-apt-source-${{ inputs.rake-job }}
7878
path: fluent-lts-apt-source/apt/repositories
7979
- name: Upload v7 fluent-package deb
8080
if: ${{ inputs.next-major }}
81-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
81+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
8282
with:
8383
name: v7-packages-${{ inputs.rake-job }}
8484
path: v7-test/fluent-package/apt/repositories

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
rm -rf fluent/staging
3636
rake dmg:selfbuild PATH="$HOME/.cargo/bin:$PATH"
3737
- name: Upload fluent-package dmg
38-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
38+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
3939
with:
4040
name: packages-macos
4141
path: fluent-package/dmg/*.dmg

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
gem install bundler:2.2.9 --no-document
5151
rake msi:build
5252
- name: Upload td-agent msi
53-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
53+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
5454
with:
5555
name: packages-windows-x86_64
5656
path: fluent-package/msi/repositories

.github/workflows/yum-arm.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,17 @@ jobs:
5151
run: |
5252
rake yum:build YUM_TARGETS=${{ matrix.rake-job }}-aarch64
5353
- name: Upload fluent-package rpm
54-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
54+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
5555
with:
5656
name: packages-${{ matrix.rake-job }}-aarch64
5757
path: fluent-package/yum/repositories
5858
- name: Upload fluent-release rpm
59-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
59+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
6060
with:
6161
name: packages-release-${{ matrix.rake-job }}-aarch64
6262
path: fluent-release/yum/repositories
6363
- name: Upload fluent-lts-release rpm
64-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
64+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
6565
with:
6666
name: packages-lts-release-${{ matrix.rake-job }}-aarch64
6767
path: fluent-lts-release/yum/repositories

.github/workflows/yum.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,22 +68,22 @@ jobs:
6868
git am fluent-package/bump-version-v7.patch
6969
rake yum:build YUM_TARGETS=${{ matrix.rake-job }}
7070
- name: Upload fluent-package rpm
71-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
71+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
7272
with:
7373
name: packages-${{ matrix.rake-job }}
7474
path: fluent-package/yum/repositories
7575
- name: Upload fluent-release rpm
76-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
76+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
7777
with:
7878
name: packages-release-${{ matrix.rake-job }}
7979
path: fluent-release/yum/repositories
8080
- name: Upload fluent-lts-release rpm
81-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
81+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
8282
with:
8383
name: packages-lts-release-${{ matrix.rake-job }}
8484
path: fluent-lts-release/yum/repositories
8585
- name: Upload v7 fluent-package rpm
86-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
86+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
8787
with:
8888
name: v7-packages-${{ matrix.rake-job }}
8989
path: v7-test/fluent-package/yum/repositories

0 commit comments

Comments
 (0)