Skip to content

Commit d9ecd31

Browse files
Bump the github-actions group with 12 updates
Bumps the github-actions group with 12 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `2` | `4` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `1` | `3` | | [docker/login-action](https://github.com/docker/login-action) | `1` | `3` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `2` | `6` | | [tj-actions/changed-files](https://github.com/tj-actions/changed-files) | `39` | `44` | | [actions/setup-python](https://github.com/actions/setup-python) | `4` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `2` | `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.26.0` | Updates `actions/checkout` from 2 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v2...v4) Updates `docker/setup-buildx-action` from 1 to 3 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v1...v3) Updates `docker/login-action` from 1 to 3 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v1...v3) Updates `docker/build-push-action` from 2 to 6 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v2...v6) Updates `tj-actions/changed-files` from 39 to 44 - [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...v44) 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 2 to 4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v2...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.26.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...eb055d7) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/build-push-action 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/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] <[email protected]>
1 parent 415352e commit d9ecd31

15 files changed

+34
-34
lines changed

.github/workflows/build_push_docker_image_Ubuntu.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,20 @@ jobs:
2323
id: extract_branch
2424

2525
- name: Checkout
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v4
2727

2828
- name: Set up Docker Buildx
29-
uses: docker/setup-buildx-action@v1
29+
uses: docker/setup-buildx-action@v3
3030

3131
- name: Log in
32-
uses: docker/login-action@v1
32+
uses: docker/login-action@v3
3333
with:
3434
registry: ghcr.io
3535
username: ${{ github.repository_owner }}
3636
password: ${{ secrets.GITHUB_TOKEN }}
3737

3838
- name: Build and push
39-
uses: docker/build-push-action@v2
39+
uses: docker/build-push-action@v6
4040
with:
4141
file: .github/workflows/UbuntuDockerfile
4242
push: true

.github/workflows/docs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
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@v44
6767
with:
6868
files_yaml: |
6969
llvm:
@@ -98,7 +98,7 @@ jobs:
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/flang-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
version: 12
2424

2525
steps:
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v4
2727

2828
- if: matrix.cc == 'clang'
2929
run: |

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
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
@@ -124,7 +124,7 @@ jobs:
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
@@ -189,7 +189,7 @@ jobs:
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/llvm-bugs.yml

+2-2
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
# Using this setup-python action to make 3.11 (64bit) the default
9191
- name: Setup Python
9292
if: ${{ matrix.os != 'self-hosted' }}
93-
uses: actions/setup-python@v4
93+
uses: actions/setup-python@v5
9494
with:
9595
python-version: ${{ inputs.python_version }}
9696
- name: Install Ninja

.github/workflows/new-prs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -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

+2-2
Original file line numberDiff line numberDiff line change
@@ -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@v44
3030
with:
3131
separator: ","
3232
skip_initial_fetch: true
@@ -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/pre-compile_llvm.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
mv llvm_build.tar.gz classic-flang-llvm-project/classic-flang-llvm-project/.
7272
7373
- name: Upload llvm
74-
uses: actions/upload-artifact@v2
74+
uses: actions/upload-artifact@v4
7575
with:
7676
name: llvm_build_${{ matrix.target }}_${{ matrix.cc }}_${{ matrix.version }}_${{ steps.extract_branch.outputs.branch }}
7777
path: llvm_build.tar.gz
@@ -92,7 +92,7 @@ jobs:
9292
# target: AArch64
9393

9494
steps:
95-
- uses: actions/checkout@v3
95+
- uses: actions/checkout@v4
9696

9797
- name: Setup Windows
9898
uses: llvm/actions/setup-windows@main
@@ -124,7 +124,7 @@ jobs:
124124
Copy-Item llvm_build.7z -Destination $pwd/classic-flang-llvm-project/
125125
126126
- name: Upload llvm
127-
uses: actions/upload-artifact@v3
127+
uses: actions/upload-artifact@v4
128128
with:
129129
name: llvm_build_win_${{ matrix.arch }}_clangcl_${{ steps.extract_branch.outputs.branch }}
130130
path: ${{ github.workspace }}\llvm_build.7z

.github/workflows/release-binaries.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545

4646
steps:
4747
- name: Checkout LLVM
48-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
48+
uses: actions/checkout@9a9194f87191a7e9055e3e9b95b8cfb13023bb08 # v4.1.1
4949

5050
- name: Check Permissions
5151
env:
@@ -91,7 +91,7 @@ jobs:
9191
- ubuntu-22.04
9292
steps:
9393
- name: Checkout LLVM
94-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
94+
uses: actions/checkout@9a9194f87191a7e9055e3e9b95b8cfb13023bb08 # v4.1.1
9595
with:
9696
ref: ${{ needs.prepare.outputs.ref }}
9797

@@ -133,7 +133,7 @@ jobs:
133133
134134
steps:
135135
- name: Checkout LLVM
136-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
136+
uses: actions/checkout@9a9194f87191a7e9055e3e9b95b8cfb13023bb08 # v4.1.1
137137
with:
138138
ref: ${{ needs.prepare.outputs.ref }}
139139
path: ${{ needs.prepare.outputs.build-dir }}/llvm-project

.github/workflows/release-documentation.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ jobs:
3434
upload: ${{ inputs.upload && !contains(inputs.release-version, 'rc') }}
3535
steps:
3636
- name: Checkout LLVM
37-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
37+
uses: actions/checkout@9a9194f87191a7e9055e3e9b95b8cfb13023bb08 # v4.1.1
3838

3939
- name: Setup Python env
40-
uses: actions/setup-python@v4
40+
uses: actions/setup-python@v5
4141
with:
4242
cache: 'pip'
4343
cache-dependency-path: './llvm/docs/requirements.txt'
@@ -59,14 +59,14 @@ jobs:
5959
./llvm/utils/release/build-docs.sh -release "${{ inputs.release-version }}" -no-doxygen
6060
6161
- name: Create Release Notes Artifact
62-
uses: actions/upload-artifact@v3
62+
uses: actions/upload-artifact@v4
6363
with:
6464
name: release-notes
6565
path: docs-build/html-export/
6666

6767
- name: Clone www-releases
6868
if: env.upload
69-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
69+
uses: actions/checkout@9a9194f87191a7e9055e3e9b95b8cfb13023bb08 # v4.1.1
7070
with:
7171
repository: ${{ github.repository_owner }}/www-releases
7272
ref: main

.github/workflows/release-doxygen.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ jobs:
3636
upload: ${{ inputs.upload && !contains(inputs.release-version, 'rc') }}
3737
steps:
3838
- name: Checkout LLVM
39-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
39+
uses: actions/checkout@9a9194f87191a7e9055e3e9b95b8cfb13023bb08 # v4.1.1
4040

4141
- name: Setup Python env
42-
uses: actions/setup-python@v4
42+
uses: actions/setup-python@v5
4343
with:
4444
cache: 'pip'
4545
cache-dependency-path: './llvm/docs/requirements.txt'

.github/workflows/release-lit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Checkout LLVM
27-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
27+
uses: actions/checkout@9a9194f87191a7e9055e3e9b95b8cfb13023bb08 # v4.1.1
2828
with:
2929
ref: "llvmorg-${{ inputs.release-version }}"
3030

.github/workflows/release-tasks.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
sudo apt-get install python3-github
3737
3838
- name: Checkout LLVM
39-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
39+
uses: actions/checkout@9a9194f87191a7e9055e3e9b95b8cfb13023bb08 # v4.1.1
4040

4141
- name: Create Release
4242
env:

.github/workflows/scorecard.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ jobs:
3131

3232
steps:
3333
- name: "Checkout code"
34-
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0
34+
uses: actions/checkout@9a9194f87191a7e9055e3e9b95b8cfb13023bb08 # v3.1.0
3535
with:
3636
persist-credentials: false
3737

3838
- name: "Run analysis"
39-
uses: ossf/scorecard-action@e38b1902ae4f44df626f11ba0734b14fb91f8f86 # v2.1.2
39+
uses: ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46 # v2.4.0
4040
with:
4141
results_file: results.sarif
4242
results_format: sarif
@@ -49,14 +49,14 @@ jobs:
4949
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
5050
# format to the repository Actions tab.
5151
- name: "Upload artifact"
52-
uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0
52+
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
5353
with:
5454
name: SARIF file
5555
path: results.sarif
5656
retention-days: 5
5757

5858
# Upload the results to GitHub's code scanning dashboard.
5959
- name: "Upload to code-scanning"
60-
uses: github/codeql-action/upload-sarif@17573ee1cc1b9d061760f3a006fc4aac4f944fd5 # v2.2.4
60+
uses: github/codeql-action/upload-sarif@eb055d739abdc2e8de2e5f4ba1a8b246daa779aa # v3.26.0
6161
with:
6262
sarif_file: results.sarif

0 commit comments

Comments
 (0)