Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit d8424e9

Browse files
dependabot[bot]DavideD
authored andcommitted
Bump the workflow-actions group with 2 updates
Bumps the workflow-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 4.2.2 to 5.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@11bd719...08c6903) Updates `actions/cache` from 4.2.3 to 4.2.4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@5a3ec84...0400d5f) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: workflow-actions - dependency-name: actions/cache dependency-version: 4.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: workflow-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 0bc4d97 commit d8424e9

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

‎.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
- 5432:5432
8484
steps:
8585
- name: Checkout ${{ inputs.branch }}
86-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
86+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
8787
with:
8888
ref: ${{ inputs.branch }}
8989
- name: Get year/month for cache key
@@ -92,7 +92,7 @@ jobs:
9292
echo "::set-output name=yearmonth::$(/bin/date -u "+%Y-%m")"
9393
shell: bash
9494
- name: Cache Gradle downloads
95-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
95+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
9696
id: cache-gradle
9797
with:
9898
path: |
@@ -132,7 +132,7 @@ jobs:
132132
db: [ 'MariaDB', 'MySQL', 'PostgreSQL', 'MSSQLServer', 'CockroachDB', 'Db2', 'Oracle' ]
133133
steps:
134134
- name: Checkout ${{ inputs.branch }}
135-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
135+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
136136
with:
137137
ref: ${{ inputs.branch }}
138138
- name: Get year/month for cache key
@@ -141,7 +141,7 @@ jobs:
141141
echo "::set-output name=yearmonth::$(/bin/date -u "+%Y-%m")"
142142
shell: bash
143143
- name: Cache Gradle downloads
144-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
144+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
145145
id: cache-gradle
146146
with:
147147
path: |
@@ -198,7 +198,7 @@ jobs:
198198
- { name: "26-ea", java_version_numeric: 26, from: 'jdk.java.net', jvm_args: '--enable-preview' }
199199
steps:
200200
- name: Checkout ${{ inputs.branch }}
201-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
201+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
202202
with:
203203
ref: ${{ inputs.branch }}
204204
- name: Get year/month for cache key
@@ -219,7 +219,7 @@ jobs:
219219
echo "buildtool-cache-key=${ROOT_CACHE_KEY}-${CURRENT_MONTH}-${CURRENT_BRANCH}-${CURRENT_DAY}" >> $GITHUB_OUTPUT
220220
- name: Cache Maven/Gradle Dependency/Dist Caches
221221
id: cache-maven
222-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
222+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
223223
# if it's not a pull request, we restore and save the cache
224224
if: github.event_name != 'pull_request'
225225
with:
@@ -236,7 +236,7 @@ jobs:
236236
${{ steps.cache-key.outputs.buildtool-monthly-branch-cache-key }}-
237237
${{ steps.cache-key.outputs.buildtool-monthly-cache-key }}-
238238
- name: Restore Maven/Gradle Dependency/Dist Caches
239-
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
239+
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
240240
# if it's a pull request, we restore the cache, but we don't save it
241241
if: github.event_name == 'pull_request'
242242
with:

‎.github/workflows/codeql.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: Checkout
27-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
27+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2828

2929
- name: Setup Java
3030
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /