Skip to content

Commit 8fb8f09

Browse files
Bump the github-actions group with 10 updates
Bumps the github-actions group with 10 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3.1.0` | `4.2.2` | | [tj-actions/changed-files](https://github.com/tj-actions/changed-files) | `39` | `45` | | [actions/setup-python](https://github.com/actions/setup-python) | `4` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `3` | `4` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `3` | `4` | | [actions/setup-node](https://github.com/actions/setup-node) | `3` | `4` | | [actions/github-script](https://github.com/actions/github-script) | `6` | `7` | | [actions/labeler](https://github.com/actions/labeler) | `4` | `5` | | [ossf/scorecard-action](https://github.com/ossf/scorecard-action) | `2.1.2` | `2.4.0` | | [github/codeql-action](https://github.com/github/codeql-action) | `2.2.4` | `3.27.0` | Updates `actions/checkout` from 3.1.0 to 4.2.2 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v3.1.0...v4.2.2) Updates `tj-actions/changed-files` from 39 to 45 - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](tj-actions/changed-files@v39...v45) Updates `actions/setup-python` from 4 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v4...v5) Updates `actions/upload-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v4) Updates `actions/download-artifact` from 3 to 4 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v3...v4) Updates `actions/setup-node` from 3 to 4 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v3...v4) Updates `actions/github-script` from 6 to 7 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v6...v7) Updates `actions/labeler` from 4 to 5 - [Release notes](https://github.com/actions/labeler/releases) - [Commits](actions/labeler@v4...v5) Updates `ossf/scorecard-action` from 2.1.2 to 2.4.0 - [Release notes](https://github.com/ossf/scorecard-action/releases) - [Changelog](https://github.com/ossf/scorecard-action/blob/main/RELEASE.md) - [Commits](ossf/scorecard-action@e38b190...62b2cac) Updates `github/codeql-action` from 2.2.4 to 3.27.0 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@17573ee...6624720) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: tj-actions/changed-files dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/labeler dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: ossf/scorecard-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent d7f0f82 commit 8fb8f09

21 files changed

+65
-65
lines changed

.github/workflows/build-ci-container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
echo "container-name-tag=$container_name:$tag" >> $GITHUB_OUTPUT
3535
3636
- name: Checkout LLVM
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v4.2.2
3838
with:
3939
sparse-checkout: .github/workflows/containers/github-action-ci/
4040

.github/workflows/docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ jobs:
5858
# a local checkout beforehand.
5959
- name: Fetch LLVM sources (Push)
6060
if: ${{ github.event_name == 'push' }}
61-
uses: actions/checkout@v4
61+
uses: actions/checkout@v4.2.2
6262
with:
6363
fetch-depth: 1
6464
- name: Get subprojects that have doc changes
6565
id: docs-changed-subprojects
66-
uses: tj-actions/changed-files@v39
66+
uses: tj-actions/changed-files@v45
6767
with:
6868
files_yaml: |
6969
llvm:
@@ -94,11 +94,11 @@ jobs:
9494
- 'flang/include/flang/Optimizer/Dialect/FIROps.td'
9595
- name: Fetch LLVM sources (PR)
9696
if: ${{ github.event_name == 'pull_request' }}
97-
uses: actions/checkout@v4
97+
uses: actions/checkout@v4.2.2
9898
with:
9999
fetch-depth: 1
100100
- name: Setup Python env
101-
uses: actions/setup-python@v4
101+
uses: actions/setup-python@v5
102102
with:
103103
python-version: '3.11'
104104
cache: 'pip'

.github/workflows/issue-release-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
contains(github.event.action == 'opened' && github.event.issue.body || github.event.comment.body, '/cherry-pick')
4040
steps:
4141
- name: Fetch LLVM sources
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v4.2.2
4343
with:
4444
repository: llvm/llvm-project
4545
# GitHub stores the token used for checkout and uses it for pushes
@@ -74,7 +74,7 @@ jobs:
7474
7575
steps:
7676
- name: Fetch LLVM sources
77-
uses: actions/checkout@v4
77+
uses: actions/checkout@v4.2.2
7878
with:
7979
persist-credentials: false
8080

.github/workflows/issue-subscriber.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
if: github.repository == 'llvm/llvm-project'
1515
steps:
1616
- name: Checkout Automation Script
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v4.2.2
1818
with:
1919
sparse-checkout: llvm/utils/git/
2020
ref: main

.github/workflows/libclang-abi-tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
LLVM_VERSION_PATCH: ${{ steps.version.outputs.LLVM_VERSION_PATCH }}
3939
steps:
4040
- name: Checkout source
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v4.2.2
4242
with:
4343
fetch-depth: 250
4444

@@ -130,7 +130,7 @@ jobs:
130130
sed -i 's/LLVM_[0-9]\+/LLVM_NOVERSION/' $lib-${{ matrix.ref }}.abi
131131
done
132132
- name: Upload ABI file
133-
uses: actions/upload-artifact@v3
133+
uses: actions/upload-artifact@v4
134134
with:
135135
name: ${{ matrix.name }}
136136
path: '*${{ matrix.ref }}.abi'
@@ -143,12 +143,12 @@ jobs:
143143
- abi-dump
144144
steps:
145145
- name: Download baseline
146-
uses: actions/download-artifact@v3
146+
uses: actions/download-artifact@v4
147147
with:
148148
name: build-baseline
149149
path: build-baseline
150150
- name: Download latest
151-
uses: actions/download-artifact@v3
151+
uses: actions/download-artifact@v4
152152
with:
153153
name: build-latest
154154
path: build-latest
@@ -162,7 +162,7 @@ jobs:
162162
done
163163
- name: Upload ABI Comparison
164164
if: always()
165-
uses: actions/upload-artifact@v3
165+
uses: actions/upload-artifact@v4
166166
with:
167167
name: compat-report-${{ github.sha }}
168168
path: compat_reports/

.github/workflows/libcxx-build-and-test.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ jobs:
6868
cxx: 'g++-13'
6969
clang_tidy: 'OFF'
7070
steps:
71-
- uses: actions/checkout@v4
71+
- uses: actions/checkout@v4.2.2
7272
- name: ${{ matrix.config }}.${{ matrix.cxx }}
7373
run: libcxx/utils/ci/run-buildbot ${{ matrix.config }}
7474
env:
7575
CC: ${{ matrix.cc }}
7676
CXX: ${{ matrix.cxx }}
7777
ENABLE_CLANG_TIDY: ${{ matrix.clang_tidy }}
78-
- uses: actions/upload-artifact@v3
78+
- uses: actions/upload-artifact@v4
7979
if: always()
8080
with:
8181
name: ${{ matrix.config }}-${{ matrix.cxx }}-results
@@ -117,14 +117,14 @@ jobs:
117117
cxx: 'clang++-17'
118118
clang_tidy: 'OFF'
119119
steps:
120-
- uses: actions/checkout@v4
120+
- uses: actions/checkout@v4.2.2
121121
- name: ${{ matrix.config }}
122122
run: libcxx/utils/ci/run-buildbot ${{ matrix.config }}
123123
env:
124124
CC: ${{ matrix.cc }}
125125
CXX: ${{ matrix.cxx }}
126126
ENABLE_CLANG_TIDY: ${{ matrix.clang_tidy }}
127-
- uses: actions/upload-artifact@v3
127+
- uses: actions/upload-artifact@v4
128128
if: always() # Upload artifacts even if the build or test suite fails
129129
with:
130130
name: ${{ matrix.config }}-results
@@ -182,14 +182,14 @@ jobs:
182182
machine: libcxx-runners-8-set
183183
runs-on: ${{ matrix.machine }}
184184
steps:
185-
- uses: actions/checkout@v4
185+
- uses: actions/checkout@v4.2.2
186186
- name: ${{ matrix.config }}
187187
run: libcxx/utils/ci/run-buildbot ${{ matrix.config }}
188188
env:
189189
CC: clang-18
190190
CXX: clang++-18
191191
ENABLE_CLANG_TIDY: "OFF"
192-
- uses: actions/upload-artifact@v3
192+
- uses: actions/upload-artifact@v4
193193
if: always()
194194
with:
195195
name: ${{ matrix.config }}-results

.github/workflows/libcxx-check-generated-files.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Fetch LLVM sources
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v4.2.2
1616

1717
- name: Install dependencies
1818
uses: aminya/setup-cpp@v1

.github/workflows/llvm-bugs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
runs-on: ubuntu-latest
1515
if: github.repository_owner == 'llvm'
1616
steps:
17-
- uses: actions/setup-node@v3
17+
- uses: actions/setup-node@v4
1818
with:
1919
node-version: 18
2020
check-latest: true
2121
- run: npm install mailgun.js form-data
2222
- name: Send notification
23-
uses: actions/github-script@v6
23+
uses: actions/github-script@v7
2424
env:
2525
MAILGUN_API_KEY: ${{ secrets.LLVM_BUGS_KEY }}
2626
with:

.github/workflows/llvm-project-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
# lldb. Using this setup-python action to make 3.10 the default
7878
# python fixes this.
7979
- name: Setup Python
80-
uses: actions/setup-python@v4
80+
uses: actions/setup-python@v5
8181
with:
8282
python-version: ${{ inputs.python_version }}
8383
- name: Install Ninja
@@ -86,7 +86,7 @@ jobs:
8686
# actions/checkout deletes any existing files in the new git directory,
8787
# so this needs to either run before ccache-action or it has to use
8888
# clean: false.
89-
- uses: actions/checkout@v4
89+
- uses: actions/checkout@v4.2.2
9090
with:
9191
fetch-depth: 250
9292
- name: Setup ccache

.github/workflows/llvm-tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
LLVM_VERSION_PATCH: ${{ steps.version.outputs.LLVM_VERSION_PATCH }}
5252
steps:
5353
- name: Checkout source
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v4.2.2
5555
with:
5656
fetch-depth: 250
5757

@@ -140,14 +140,14 @@ jobs:
140140
# Remove symbol versioning from dumps, so we can compare across major versions.
141141
sed -i 's/LLVM_${{ matrix.llvm_version_major }}/LLVM_NOVERSION/' ${{ matrix.ref }}.abi
142142
- name: Upload ABI file
143-
uses: actions/upload-artifact@v3
143+
uses: actions/upload-artifact@v4
144144
with:
145145
name: ${{ matrix.name }}
146146
path: ${{ matrix.ref }}.abi
147147

148148
- name: Upload symbol list file
149149
if: matrix.name == 'build-baseline'
150-
uses: actions/upload-artifact@v3
150+
uses: actions/upload-artifact@v4
151151
with:
152152
name: symbol-list
153153
path: llvm.symbols
@@ -160,17 +160,17 @@ jobs:
160160
- abi-dump
161161
steps:
162162
- name: Download baseline
163-
uses: actions/download-artifact@v3
163+
uses: actions/download-artifact@v4
164164
with:
165165
name: build-baseline
166166
path: build-baseline
167167
- name: Download latest
168-
uses: actions/download-artifact@v3
168+
uses: actions/download-artifact@v4
169169
with:
170170
name: build-latest
171171
path: build-latest
172172
- name: Download symbol list
173-
uses: actions/download-artifact@v3
173+
uses: actions/download-artifact@v4
174174
with:
175175
name: symbol-list
176176
path: symbol-list
@@ -189,7 +189,7 @@ jobs:
189189
abi-compliance-checker $EXTRA_ARGS -l libLLVM.so -old build-baseline/*.abi -new build-latest/*.abi || test "${{ needs.abi-dump-setup.outputs.ABI_HEADERS }}" = "llvm-c"
190190
- name: Upload ABI Comparison
191191
if: always()
192-
uses: actions/upload-artifact@v3
192+
uses: actions/upload-artifact@v4
193193
with:
194194
name: compat-report-${{ github.sha }}
195195
path: compat_reports/

.github/workflows/new-prs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
(github.event.pull_request.author_association != 'OWNER')
3636
steps:
3737
- name: Checkout Automation Script
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v4.2.2
3939
with:
4040
sparse-checkout: llvm/utils/git/
4141
ref: main
@@ -67,7 +67,7 @@ jobs:
6767
github.event.pull_request.draft == false &&
6868
github.event.pull_request.commits < 10
6969
steps:
70-
- uses: actions/labeler@v4
70+
- uses: actions/labeler@v5
7171
with:
7272
configuration-path: .github/new-prs-labeler.yml
7373
# workaround for https://github.com/actions/labeler/issues/112

.github/workflows/pr-code-format.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: github.repository == 'llvm/llvm-project'
1414
steps:
1515
- name: Fetch LLVM sources
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v4.2.2
1717
with:
1818
ref: ${{ github.event.pull_request.head.sha }}
1919

@@ -26,7 +26,7 @@ jobs:
2626

2727
- name: Get changed files
2828
id: changed-files
29-
uses: tj-actions/changed-files@v39
29+
uses: tj-actions/changed-files@v45
3030
with:
3131
separator: ","
3232
skip_initial_fetch: true
@@ -35,7 +35,7 @@ jobs:
3535
# PR for security reasons as we're using pull_request_target. Checkout
3636
# the target branch with the necessary files.
3737
- name: Fetch code formatting utils
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v4.2.2
3939
with:
4040
sparse-checkout: |
4141
llvm/utils/git/requirements_formatting.txt
@@ -56,7 +56,7 @@ jobs:
5656
clangformat: 17.0.1
5757

5858
- name: Setup Python env
59-
uses: actions/setup-python@v4
59+
uses: actions/setup-python@v5
6060
with:
6161
python-version: '3.11'
6262
cache: 'pip'

.github/workflows/pr-request-release-note.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
# We need to pull the script from the main branch, so that we ensure
2121
# we get the latest version of this script.
2222
- name: Checkout Scripts
23-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
23+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2424
with:
2525
sparse-checkout: |
2626
llvm/utils/git/requirements.txt

.github/workflows/pr-subscriber.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
if: github.repository == 'llvm/llvm-project'
1515
steps:
1616
- name: Checkout Automation Script
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v4.2.2
1818
with:
1919
sparse-checkout: llvm/utils/git/
2020
ref: main

0 commit comments

Comments
 (0)