Skip to content
This repository was archived by the owner on Jan 20, 2024. It is now read-only.

Commit 4a476a3

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.1.1` | | [tj-actions/changed-files](https://github.com/tj-actions/changed-files) | `39` | `41` | | [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.3.1` | | [github/codeql-action](https://github.com/github/codeql-action) | `2.2.4` | `3.23.0` | Updates `actions/checkout` from 3.1.0 to 4.1.1 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v3.1.0...v4.1.1) Updates `tj-actions/changed-files` from 39 to 41 - [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...v41) 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.3.1 - [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...0864cf1) Updates `github/codeql-action` from 2.2.4 to 3.23.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...e5f05b8) --- 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 5fcf907 commit 4a476a3

14 files changed

+41
-41
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.1.1
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.1.1
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@v41
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.1.1
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.1.1
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.1.1
7878
with:
7979
persist-credentials: false
8080

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

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

@@ -131,7 +131,7 @@ jobs:
131131
sed -i 's/LLVM_[0-9]\+/LLVM_NOVERSION/' $lib-${{ matrix.ref }}.abi
132132
done
133133
- name: Upload ABI file
134-
uses: actions/upload-artifact@v3
134+
uses: actions/upload-artifact@v4
135135
with:
136136
name: ${{ matrix.name }}
137137
path: '*${{ matrix.ref }}.abi'
@@ -144,12 +144,12 @@ jobs:
144144
- abi-dump
145145
steps:
146146
- name: Download baseline
147-
uses: actions/download-artifact@v3
147+
uses: actions/download-artifact@v4
148148
with:
149149
name: build-baseline
150150
path: build-baseline
151151
- name: Download latest
152-
uses: actions/download-artifact@v3
152+
uses: actions/download-artifact@v4
153153
with:
154154
name: build-latest
155155
path: build-latest
@@ -163,7 +163,7 @@ jobs:
163163
done
164164
- name: Upload ABI Comparison
165165
if: always()
166-
uses: actions/upload-artifact@v3
166+
uses: actions/upload-artifact@v4
167167
with:
168168
name: compat-report-${{ github.sha }}
169169
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.1.1
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.1.1
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.1.1
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.1.1
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 == 'llvm/llvm-project'
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
@@ -74,15 +74,15 @@ jobs:
7474
# lldb. Using this setup-python action to make 3.10 the default
7575
# python fixes this.
7676
- name: Setup Python
77-
uses: actions/setup-python@v4
77+
uses: actions/setup-python@v5
7878
with:
7979
python-version: ${{ inputs.python_version }}
8080
- name: Install Ninja
8181
uses: llvm/actions/install-ninja@main
8282
# actions/checkout deletes any existing files in the new git directory,
8383
# so this needs to either run before ccache-action or it has to use
8484
# clean: false.
85-
- uses: actions/checkout@v4
85+
- uses: actions/checkout@v4.1.1
8686
with:
8787
fetch-depth: 250
8888
- name: Setup ccache

.github/workflows/llvm-tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
LLVM_VERSION_PATCH: ${{ steps.version.outputs.LLVM_VERSION_PATCH }}
6666
steps:
6767
- name: Checkout source
68-
uses: actions/checkout@v4
68+
uses: actions/checkout@v4.1.1
6969
with:
7070
fetch-depth: 250
7171

@@ -147,14 +147,14 @@ jobs:
147147
# Remove symbol versioning from dumps, so we can compare across major versions.
148148
sed -i 's/LLVM_${{ matrix.llvm_version_major }}/LLVM_NOVERSION/' ${{ matrix.ref }}.abi
149149
- name: Upload ABI file
150-
uses: actions/upload-artifact@v3
150+
uses: actions/upload-artifact@v4
151151
with:
152152
name: ${{ matrix.name }}
153153
path: ${{ matrix.ref }}.abi
154154

155155
- name: Upload symbol list file
156156
if: matrix.name == 'build-baseline'
157-
uses: actions/upload-artifact@v3
157+
uses: actions/upload-artifact@v4
158158
with:
159159
name: symbol-list
160160
path: llvm.symbols
@@ -167,17 +167,17 @@ jobs:
167167
- abi-dump
168168
steps:
169169
- name: Download baseline
170-
uses: actions/download-artifact@v3
170+
uses: actions/download-artifact@v4
171171
with:
172172
name: build-baseline
173173
path: build-baseline
174174
- name: Download latest
175-
uses: actions/download-artifact@v3
175+
uses: actions/download-artifact@v4
176176
with:
177177
name: build-latest
178178
path: build-latest
179179
- name: Download symbol list
180-
uses: actions/download-artifact@v3
180+
uses: actions/download-artifact@v4
181181
with:
182182
name: symbol-list
183183
path: symbol-list
@@ -196,7 +196,7 @@ jobs:
196196
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"
197197
- name: Upload ABI Comparison
198198
if: always()
199-
uses: actions/upload-artifact@v3
199+
uses: actions/upload-artifact@v4
200200
with:
201201
name: compat-report-${{ github.sha }}
202202
path: compat_reports/

.github/workflows/new-prs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
github.event.pull_request.draft == false &&
6363
github.event.pull_request.commits < 10
6464
steps:
65-
- uses: actions/labeler@v4
65+
- uses: actions/labeler@v5
6666
with:
6767
configuration-path: .github/new-prs-labeler.yml
6868
# workaround for https://github.com/actions/labeler/issues/112

0 commit comments

Comments
 (0)