Skip to content

Commit aa5b103

Browse files
Bump the github-actions group with 4 updates
Bumps the github-actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact), [github/codeql-action](https://github.com/github/codeql-action) and [actions/github-script](https://github.com/actions/github-script). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v3...v4) Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 9260c9e commit aa5b103

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/assets.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323

2424
- name: Set up Ruby
2525
uses: ruby/setup-ruby@v1
@@ -100,7 +100,7 @@ jobs:
100100
101101
- name: Upload compiled assets
102102
if: always()
103-
uses: actions/upload-artifact@v4
103+
uses: actions/upload-artifact@v5
104104
with:
105105
name: compiled-assets
106106
path: |

.github/workflows/codeql-analysis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,25 +32,25 @@ jobs:
3232

3333
steps:
3434
- name: Checkout repository
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636
with:
3737
fetch-depth: 0
3838

3939
- name: Initialize CodeQL
40-
uses: github/codeql-action/init@v3
40+
uses: github/codeql-action/init@v4
4141
with:
4242
languages: ${{ matrix.language }}
4343

4444
- name: Autobuild
45-
uses: github/codeql-action/autobuild@v3
45+
uses: github/codeql-action/autobuild@v4
4646

4747
- name: Perform CodeQL Analysis
48-
uses: github/codeql-action/analyze@v3
48+
uses: github/codeql-action/analyze@v4
4949
with:
5050
category: "/language:${{matrix.language}}"
5151

5252
- name: Upload CodeQL results
53-
uses: actions/upload-artifact@v4
53+
uses: actions/upload-artifact@v5
5454
with:
5555
name: codeql-results-${{ matrix.language }}
5656
path: |

.github/workflows/migrations.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
4444
steps:
4545
# Clone repo and checkout merge commit parent (PR target commit)
46-
- uses: actions/checkout@v4
46+
- uses: actions/checkout@v5
4747
with:
4848
fetch-depth: 2
4949

@@ -112,7 +112,7 @@ jobs:
112112
113113
- name: Upload migration artifacts
114114
if: always()
115-
uses: actions/upload-artifact@v4
115+
uses: actions/upload-artifact@v5
116116
with:
117117
name: migration-artifacts
118118
path: |
@@ -123,7 +123,7 @@ jobs:
123123

124124
- name: Notify on failure
125125
if: failure()
126-
uses: actions/github-script@v7
126+
uses: actions/github-script@v8
127127
with:
128128
script: |
129129
github.rest.issues.createComment({

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
POSTGRES_PASSWORD: ${{ env.OXA_DB_PASS }}
4141

4242
steps:
43-
- uses: actions/checkout@v4
43+
- uses: actions/checkout@v5
4444

4545
- name: Set up Ruby ${{ matrix.ruby-version }}
4646
uses: ruby/setup-ruby@v1
@@ -74,7 +74,7 @@ jobs:
7474
7575
- name: Upload test results
7676
if: always()
77-
uses: actions/upload-artifact@v4
77+
uses: actions/upload-artifact@v5
7878
with:
7979
name: test-results-${{ matrix.ruby-version }}
8080
path: |
@@ -84,7 +84,7 @@ jobs:
8484

8585
- name: Notify on failure
8686
if: failure()
87-
uses: actions/github-script@v7
87+
uses: actions/github-script@v8
8888
with:
8989
script: |
9090
github.rest.issues.createComment({

0 commit comments

Comments
 (0)