Skip to content

Commit b986a34

Browse files
Bump the github-actions group with 6 updates (#6075)
Bumps the github-actions group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5.0.0` | `6.0.0` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `6` | | [actions/setup-java](https://github.com/actions/setup-java) | `4` | `5` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `8` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `2.4.1` | `2.5.0` | | [github/codeql-action](https://github.com/github/codeql-action) | `4.31.2` | `4.31.6` |
1 parent 5e2a73d commit b986a34

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+127
-127
lines changed

.github/workflows/abi-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
FILE_DOTSMAIN=$(echo "${{ inputs.file_ref }}" | sed -r "s/([0-9]+)\.([0-9]+)\.([0-9]+).*/\1\.\2\.\3/")
4747
echo "HDF5R_DOTSMAIN=$FILE_DOTSMAIN" >> $GITHUB_OUTPUT
4848
49-
- uses: actions/checkout@v5.0.0
49+
- uses: actions/checkout@v6.0.0
5050

5151
- name: Get published binary (Linux)
5252
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0

.github/workflows/aocc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Get Sources
27-
uses: actions/checkout@v5.0.0
27+
uses: actions/checkout@v6.0.0
2828

2929
- name: Install Dependencies
3030
shell: bash

.github/workflows/arm-main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
6161
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
6262
- name: Get Sources
63-
uses: actions/checkout@v5.0.0
63+
uses: actions/checkout@v6.0.0
6464

6565
# CONFIGURE
6666
- name: Configure
@@ -175,7 +175,7 @@ jobs:
175175

176176
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
177177
- name: Get Sources
178-
uses: actions/checkout@v5.0.0
178+
uses: actions/checkout@v6.0.0
179179

180180
# CONFIGURE
181181
- name: Configure
@@ -295,7 +295,7 @@ jobs:
295295
296296
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
297297
- name: Get Sources
298-
uses: actions/checkout@v5.0.0
298+
uses: actions/checkout@v6.0.0
299299

300300
# CONFIGURE
301301
- name: Configure

.github/workflows/build-aws-c-s3.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ jobs:
5252
steps:
5353
- name: Get aws-c-s3 sources (main)
5454
if: inputs.aws_c_s3_tag == ''
55-
uses: actions/checkout@v5.0.0
55+
uses: actions/checkout@v6.0.0
5656
with:
5757
repository: awslabs/aws-c-s3
5858
path: aws-c-s3
5959

6060
- name: Get aws-c-s3 sources (tag)
6161
if: inputs.aws_c_s3_tag != ''
62-
uses: actions/checkout@v5.0.0
62+
uses: actions/checkout@v6.0.0
6363
with:
6464
repository: awslabs/aws-c-s3
6565
path: aws-c-s3
@@ -85,70 +85,70 @@ jobs:
8585

8686
- name: Get aws-lc sources
8787
if: ${{ steps.cache-aws-c-s3-ubuntu-gcc.outputs.cache-hit != 'true' }}
88-
uses: actions/checkout@v5.0.0
88+
uses: actions/checkout@v6.0.0
8989
with:
9090
repository: aws/aws-lc
9191
path: aws-lc
9292

9393
- name: Get s2n-tls sources
9494
if: ${{ steps.cache-aws-c-s3-ubuntu-gcc.outputs.cache-hit != 'true' }}
95-
uses: actions/checkout@v5.0.0
95+
uses: actions/checkout@v6.0.0
9696
with:
9797
repository: aws/s2n-tls
9898
path: s2n-tls
9999

100100
- name: Get aws-c-common sources
101101
if: ${{ steps.cache-aws-c-s3-ubuntu-gcc.outputs.cache-hit != 'true' }}
102-
uses: actions/checkout@v5.0.0
102+
uses: actions/checkout@v6.0.0
103103
with:
104104
repository: awslabs/aws-c-common
105105
path: aws-c-common
106106

107107
- name: Get aws-checksums sources
108108
if: ${{ steps.cache-aws-c-s3-ubuntu-gcc.outputs.cache-hit != 'true' }}
109-
uses: actions/checkout@v5.0.0
109+
uses: actions/checkout@v6.0.0
110110
with:
111111
repository: awslabs/aws-checksums
112112
path: aws-checksums
113113

114114
- name: Get aws-c-cal sources
115115
if: ${{ steps.cache-aws-c-s3-ubuntu-gcc.outputs.cache-hit != 'true' }}
116-
uses: actions/checkout@v5.0.0
116+
uses: actions/checkout@v6.0.0
117117
with:
118118
repository: awslabs/aws-c-cal
119119
path: aws-c-cal
120120

121121
- name: Get aws-c-io sources
122122
if: ${{ steps.cache-aws-c-s3-ubuntu-gcc.outputs.cache-hit != 'true' }}
123-
uses: actions/checkout@v5.0.0
123+
uses: actions/checkout@v6.0.0
124124
with:
125125
repository: awslabs/aws-c-io
126126
path: aws-c-io
127127

128128
- name: Get aws-c-compression sources
129129
if: ${{ steps.cache-aws-c-s3-ubuntu-gcc.outputs.cache-hit != 'true' }}
130-
uses: actions/checkout@v5.0.0
130+
uses: actions/checkout@v6.0.0
131131
with:
132132
repository: awslabs/aws-c-compression
133133
path: aws-c-compression
134134

135135
- name: Get aws-c-http sources
136136
if: ${{ steps.cache-aws-c-s3-ubuntu-gcc.outputs.cache-hit != 'true' }}
137-
uses: actions/checkout@v5.0.0
137+
uses: actions/checkout@v6.0.0
138138
with:
139139
repository: awslabs/aws-c-http
140140
path: aws-c-http
141141

142142
- name: Get aws-c-sdkutils sources
143143
if: ${{ steps.cache-aws-c-s3-ubuntu-gcc.outputs.cache-hit != 'true' }}
144-
uses: actions/checkout@v5.0.0
144+
uses: actions/checkout@v6.0.0
145145
with:
146146
repository: awslabs/aws-c-sdkutils
147147
path: aws-c-sdkutils
148148

149149
- name: Get aws-c-auth sources
150150
if: ${{ steps.cache-aws-c-s3-ubuntu-gcc.outputs.cache-hit != 'true' }}
151-
uses: actions/checkout@v5.0.0
151+
uses: actions/checkout@v6.0.0
152152
with:
153153
repository: awslabs/aws-c-auth
154154
path: aws-c-auth

.github/workflows/build_mpich_source.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
sudo apt-get install build-essential libtool libtool-bin
3131
3232
- name: Get MPICH source
33-
uses: actions/checkout@v5.0.0
33+
uses: actions/checkout@v6.0.0
3434
with:
3535
repository: 'pmodels/mpich'
3636
path: 'mpich'

.github/workflows/build_openmpi_source.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
sudo apt-get install build-essential libtool libtool-bin
3131
3232
- name: Get OpenMPI source
33-
uses: actions/checkout@v5.0.0
33+
uses: actions/checkout@v6.0.0
3434
with:
3535
repository: 'open-mpi/ompi'
3636
path: 'ompi'

.github/workflows/clang-format-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
if: "!contains(github.event.head_commit.message, 'skip-ci')"
1313
steps:
14-
- uses: actions/checkout@v5.0.0
14+
- uses: actions/checkout@v6.0.0
1515

1616
- name: Run clang-format style check for C and Java code
1717
uses: DoozyX/[email protected]

.github/workflows/clang-format-fix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
permissions:
2424
contents: write # In order to allow EndBug/add-and-commit to commit changes
2525
steps:
26-
- uses: actions/checkout@v5.0.0
26+
- uses: actions/checkout@v6.0.0
2727

2828
- name: Fix C and Java formatting issues detected by clang-format
2929
uses: DoozyX/[email protected]

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ jobs:
1010
name: Check for spelling errors
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v5.0.0
13+
- uses: actions/checkout@v6.0.0
1414
- uses: codespell-project/actions-codespell@master

.github/workflows/cross-compile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444

4545
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
4646
- name: Get Sources
47-
uses: actions/checkout@v5.0.0
47+
uses: actions/checkout@v6.0.0
4848

4949
# CMAKE CONFIGURE
5050
- name: CMake Configure

0 commit comments

Comments
 (0)