Skip to content

Commit efb2701

Browse files
committed
Bump actions/checkout from 3 to 3.0.2.
1 parent cf7daf9 commit efb2701

4 files changed

Lines changed: 79 additions & 76 deletions

File tree

Lines changed: 74 additions & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -1,74 +1,74 @@
1-
# Licensed to the Apache Software Foundation (ASF) under one or more
2-
# contributor license agreements. See the NOTICE file distributed with
3-
# this work for additional information regarding copyright ownership.
4-
# The ASF licenses this file to You under the Apache License, Version 2.0
5-
# (the "License"); you may not use this file except in compliance with
6-
# the License. You may obtain a copy of the License at
7-
#
8-
# http://www.apache.org/licenses/LICENSE-2.0
9-
#
10-
# Unless required by applicable law or agreed to in writing, software
11-
# distributed under the License is distributed on an "AS IS" BASIS,
12-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
# See the License for the specific language governing permissions and
14-
# limitations under the License.
15-
16-
name: "CodeQL"
17-
18-
on:
19-
push:
20-
branches: [ master ]
21-
pull_request:
22-
# The branches below must be a subset of the branches above
23-
branches: [ master ]
24-
schedule:
25-
- cron: '33 9 * * 4'
26-
27-
jobs:
28-
analyze:
29-
name: Analyze
30-
runs-on: ubuntu-latest
31-
permissions:
32-
actions: read
33-
contents: read
34-
security-events: write
35-
36-
strategy:
37-
fail-fast: false
38-
matrix:
39-
language: [ 'java' ]
40-
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
41-
# Learn more about CodeQL language support at https://git.io/codeql-language-support
42-
43-
steps:
44-
- name: Checkout repository
45-
uses: actions/checkout@v3
46-
47-
# Initializes the CodeQL tools for scanning.
48-
- name: Initialize CodeQL
49-
uses: github/codeql-action/init@v2
50-
with:
51-
languages: ${{ matrix.language }}
52-
# If you wish to specify custom queries, you can do so here or in a config file.
53-
# By default, queries listed here will override any specified in a config file.
54-
# Prefix the list here with "+" to use these queries and those in the config file.
55-
# queries: ./path/to/local/query, your-org/your-repo/queries@main
56-
57-
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
58-
# If this step fails, then you should remove it and run the build manually (see below)
59-
- name: Autobuild
60-
uses: github/codeql-action/autobuild@v2
61-
62-
# ℹ️ Command-line programs to run using the OS shell.
63-
# 📚 https://git.io/JvXDl
64-
65-
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
66-
# and modify them (or add more) to build your code if your project
67-
# uses a compiled language
68-
69-
#- run: |
70-
# make bootstrap
71-
# make release
72-
73-
- name: Perform CodeQL Analysis
74-
uses: github/codeql-action/analyze@v2
1+
# Licensed to the Apache Software Foundation (ASF) under one or more
2+
# contributor license agreements. See the NOTICE file distributed with
3+
# this work for additional information regarding copyright ownership.
4+
# The ASF licenses this file to You under the Apache License, Version 2.0
5+
# (the "License"); you may not use this file except in compliance with
6+
# the License. You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
16+
name: "CodeQL"
17+
18+
on:
19+
push:
20+
branches: [ master ]
21+
pull_request:
22+
# The branches below must be a subset of the branches above
23+
branches: [ master ]
24+
schedule:
25+
- cron: '33 9 * * 4'
26+
27+
jobs:
28+
analyze:
29+
name: Analyze
30+
runs-on: ubuntu-latest
31+
permissions:
32+
actions: read
33+
contents: read
34+
security-events: write
35+
36+
strategy:
37+
fail-fast: false
38+
matrix:
39+
language: [ 'java' ]
40+
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
41+
# Learn more about CodeQL language support at https://git.io/codeql-language-support
42+
43+
steps:
44+
- name: Checkout repository
45+
uses: actions/checkout@v3.0.2
46+
47+
# Initializes the CodeQL tools for scanning.
48+
- name: Initialize CodeQL
49+
uses: github/codeql-action/init@v2
50+
with:
51+
languages: ${{ matrix.language }}
52+
# If you wish to specify custom queries, you can do so here or in a config file.
53+
# By default, queries listed here will override any specified in a config file.
54+
# Prefix the list here with "+" to use these queries and those in the config file.
55+
# queries: ./path/to/local/query, your-org/your-repo/queries@main
56+
57+
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
58+
# If this step fails, then you should remove it and run the build manually (see below)
59+
- name: Autobuild
60+
uses: github/codeql-action/autobuild@v2
61+
62+
# ℹ️ Command-line programs to run using the OS shell.
63+
# 📚 https://git.io/JvXDl
64+
65+
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
66+
# and modify them (or add more) to build your code if your project
67+
# uses a compiled language
68+
69+
#- run: |
70+
# make bootstrap
71+
# make release
72+
73+
- name: Perform CodeQL Analysis
74+
uses: github/codeql-action/analyze@v2

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
java: [ 8 ]
3030

3131
steps:
32-
- uses: actions/checkout@v3
32+
- uses: actions/checkout@v3.0.2
3333
- uses: actions/cache@v3.0.8
3434
with:
3535
path: ~/.m2/repository

.github/workflows/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
# experimental: true
3232

3333
steps:
34-
- uses: actions/checkout@v3
34+
- uses: actions/checkout@v3.0.2
3535
- uses: actions/cache@v3.0.8
3636
with:
3737
path: ~/.m2/repository

src/changes/changes.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@
4242
<action type="update" dev="ggregory" due-to="Dependabot, Gary Gregory">
4343
Bump actions/cache from 2.1.7 to 3.0.8 #97.
4444
</action>
45+
<action type="update" dev="ggregory" due-to="Gary Gregory">
46+
Bump actions/checkout from 3 to 3.0.2.
47+
</action>
4548
<action type="update" dev="ggregory" due-to="Gary Gregory">
4649
Bump actions/setup-java from 2 to 3.
4750
</action>

0 commit comments

Comments
 (0)