Skip to content

Commit 08c4626

Browse files
authored
Merge pull request #368 from sx-aurora-dev/dependabot/github_actions/github-actions-12e3851c9a
Bump the github-actions group across 1 directory with 9 updates
2 parents 79ebb32 + 9d67415 commit 08c4626

23 files changed

+50
-50
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Checkout LLVM
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030
with:
3131
sparse-checkout: .github/workflows/containers/github-action-ci/
3232
- name: Change podman Root Direcotry
@@ -65,7 +65,7 @@ jobs:
6565
echo "container-name-tag=$container_name:$tag" >> $GITHUB_OUTPUT
6666
6767
- name: Checkout LLVM
68-
uses: actions/checkout@v4.1.1
68+
uses: actions/checkout@v5
6969
with:
7070
sparse-checkout: .github/workflows/containers/github-action-ci/
7171

@@ -81,7 +81,7 @@ jobs:
8181
# $GITHUB_WORKSPACE to avoid space limitations on the default drive
8282
# and use the permissions setup for /mnt/podman.
8383
- name: Download stage1-toolchain
84-
uses: actions/download-artifact@v4
84+
uses: actions/download-artifact@v5
8585
with:
8686
name: stage1-toolchain
8787
path: /mnt/podman

.github/workflows/docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,12 @@ jobs:
6060
# a local checkout beforehand.
6161
- name: Fetch LLVM sources (Push)
6262
if: ${{ github.event_name == 'push' }}
63-
uses: actions/checkout@v4.1.1
63+
uses: actions/checkout@v5
6464
with:
6565
fetch-depth: 1
6666
- name: Get subprojects that have doc changes
6767
id: docs-changed-subprojects
68-
uses: tj-actions/changed-files@v46
68+
uses: tj-actions/changed-files@v47
6969
with:
7070
files_yaml: |
7171
llvm:
@@ -96,11 +96,11 @@ jobs:
9696
- 'flang/include/flang/Optimizer/Dialect/FIROps.td'
9797
- name: Fetch LLVM sources (PR)
9898
if: ${{ github.event_name == 'pull_request' }}
99-
uses: actions/checkout@v4.1.1
99+
uses: actions/checkout@v5
100100
with:
101101
fetch-depth: 1
102102
- name: Setup Python env
103-
uses: actions/setup-python@v5
103+
uses: actions/setup-python@v6
104104
with:
105105
python-version: '3.11'
106106
cache: 'pip'

.github/workflows/email-check.yaml

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: Fetch LLVM sources
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
with:
1919
ref: ${{ github.event.pull_request.head.sha }}
2020

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
contains(github.event.action == 'opened' && github.event.issue.body || github.event.comment.body, '/cherry-pick')
4343
steps:
4444
- name: Fetch LLVM sources
45-
uses: actions/checkout@v4.1.1
45+
uses: actions/checkout@v5
4646
with:
4747
repository: llvm/llvm-project
4848
# GitHub stores the token used for checkout and uses it for pushes

.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.1.1
17+
uses: actions/checkout@v5
1818
with:
1919
sparse-checkout: llvm/utils/git/
2020
ref: main

.github/workflows/issue-write.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ jobs:
2020
github.event.workflow_run.event == 'pull_request'
2121
steps:
2222
- name: 'Download artifact'
23-
uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1
23+
uses: actions/download-artifact@4a24838f3d5601fd639834081e118c2995d51e1c # v4.1.1
2424
with:
2525
github-token: ${{ secrets.ISSUE_WRITE_DOWNLOAD_ARTIFACT }}
2626
run-id: ${{ github.event.workflow_run.id }}
2727
name: workflow-args
2828

2929
- name: 'Comment on PR'
30-
uses: actions/github-script@v7
30+
uses: actions/github-script@v8
3131
with:
3232
github-token: ${{ secrets.GITHUB_TOKEN }}
3333
script: |

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

Lines changed: 3 additions & 3 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.1.1
42+
uses: actions/checkout@v5
4343
with:
4444
fetch-depth: 250
4545

@@ -144,12 +144,12 @@ jobs:
144144
- abi-dump
145145
steps:
146146
- name: Download baseline
147-
uses: actions/download-artifact@v4
147+
uses: actions/download-artifact@v5
148148
with:
149149
name: build-baseline
150150
path: build-baseline
151151
- name: Download latest
152-
uses: actions/download-artifact@v4
152+
uses: actions/download-artifact@v5
153153
with:
154154
name: build-latest
155155
path: build-latest

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
cc: 'gcc-13'
6767
cxx: 'g++-13'
6868
steps:
69-
- uses: actions/checkout@v4
69+
- uses: actions/checkout@v5
7070
- name: ${{ matrix.config }}.${{ matrix.cxx }}
7171
run: libcxx/utils/ci/run-buildbot ${{ matrix.config }}
7272
env:
@@ -110,7 +110,7 @@ jobs:
110110
cc: 'clang-18'
111111
cxx: 'clang++-18'
112112
steps:
113-
- uses: actions/checkout@v4
113+
- uses: actions/checkout@v5
114114
- name: ${{ matrix.config }}
115115
run: libcxx/utils/ci/run-buildbot ${{ matrix.config }}
116116
env:
@@ -174,7 +174,7 @@ jobs:
174174
machine: libcxx-runners-8-set
175175
runs-on: ${{ matrix.machine }}
176176
steps:
177-
- uses: actions/checkout@v4
177+
- uses: actions/checkout@v5
178178
- name: ${{ matrix.config }}
179179
run: libcxx/utils/ci/run-buildbot ${{ matrix.config }}
180180
env:
@@ -206,7 +206,7 @@ jobs:
206206
- { config: mingw-static, mingw: true }
207207
- { config: mingw-dll-i686, mingw: true }
208208
steps:
209-
- uses: actions/checkout@v4
209+
- uses: actions/checkout@v5
210210
- name: Install dependencies
211211
run: |
212212
choco install -y ninja wget

.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.1.1
15+
uses: actions/checkout@v5
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@v4
17+
- uses: actions/setup-node@v5
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@v7
23+
uses: actions/github-script@v8
2424
env:
2525
MAILGUN_API_KEY: ${{ secrets.LLVM_BUGS_KEY }}
2626
with:

0 commit comments

Comments
 (0)