Skip to content

Commit 29b6e98

Browse files
Merge branch 'tj-actions:main' into main
2 parents 7d0683b + e002140 commit 29b6e98

23 files changed

+2462
-2239
lines changed

.all-contributorsrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,16 @@
272272
"contributions": [
273273
"doc"
274274
]
275+
},
276+
{
277+
"login": "Jellyfrog",
278+
"name": "Jellyfrog",
279+
"avatar_url": "https://avatars.githubusercontent.com/u/759887?v=4",
280+
"profile": "https://github.com/Jellyfrog",
281+
"contributions": [
282+
"code",
283+
"doc"
284+
]
275285
}
276286
],
277287
"contributorsPerLine": 7,

.github/workflows/codacy-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ jobs:
2929
steps:
3030
# Checkout the repository to the GitHub Actions runner
3131
- name: Checkout code
32-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
32+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
3333

3434
# Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis
3535
- name: Run Codacy Analysis CLI
3636
continue-on-error: true
37-
uses: codacy/codacy-analysis-cli-action@97bf5df3c09e75f5bcd72695998f96ebd701846e # v4.4.5
37+
uses: codacy/codacy-analysis-cli-action@562ee3e92b8e92df8b67e0a5ff8aa8e261919c08 # v4.4.7
3838
with:
3939
# Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository
4040
# You can also omit the token and run the tools that support default configurations
@@ -51,6 +51,6 @@ jobs:
5151
# Upload the SARIF file generated in the previous step
5252
- name: Upload SARIF results file
5353
continue-on-error: true
54-
uses: github/codeql-action/upload-sarif@5f8171a638ada777af81d42b55959a643bb29017 # v3.28.12
54+
uses: github/codeql-action/upload-sarif@cf1bb45a277cb3c205638b2cd5c984db1c46a412 # v3.29.5
5555
with:
5656
sarif_file: results.sarif

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ jobs:
4242

4343
steps:
4444
- name: Checkout repository
45-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
45+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4646

4747
# Initializes the CodeQL tools for scanning.
4848
- name: Initialize CodeQL
49-
uses: github/codeql-action/init@5f8171a638ada777af81d42b55959a643bb29017 # v3.28.12
49+
uses: github/codeql-action/init@cf1bb45a277cb3c205638b2cd5c984db1c46a412 # v3.29.5
5050
with:
5151
languages: ${{ matrix.language }}
5252
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -60,7 +60,7 @@ jobs:
6060
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
6161
# If this step fails, then you should remove it and run the build manually (see below)
6262
- name: Autobuild
63-
uses: github/codeql-action/autobuild@5f8171a638ada777af81d42b55959a643bb29017 # v3.28.12
63+
uses: github/codeql-action/autobuild@cf1bb45a277cb3c205638b2cd5c984db1c46a412 # v3.29.5
6464

6565
# ℹ️ Command-line programs to run using the OS shell.
6666
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -73,6 +73,6 @@ jobs:
7373
# ./location_of_script_within_repo/buildscript.sh
7474

7575
- name: Perform CodeQL Analysis
76-
uses: github/codeql-action/analyze@5f8171a638ada777af81d42b55959a643bb29017 # v3.28.12
76+
uses: github/codeql-action/analyze@cf1bb45a277cb3c205638b2cd5c984db1c46a412 # v3.29.5
7777
with:
7878
category: "/language:${{matrix.language}}"

.github/workflows/issue-comment-job-example.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
NUMBER: ${{ github.event.issue.number }}
2020
2121
- name: Checkout
22-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
22+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2323
with:
2424
submodules: true
2525
fetch-depth: 0
@@ -104,7 +104,7 @@ jobs:
104104
NUMBER: ${{ github.event.issue.number }}
105105
106106
- name: Checkout
107-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
107+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
108108
with:
109109
submodules: true
110110
fetch-depth: 0

.github/workflows/manual-triggered-job-example.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ permissions:
55

66
on:
77
workflow_dispatch:
8+
inputs:
9+
files:
10+
required: false
11+
type: string
12+
default: |
13+
**.md **/**.md test/*.txt
814
915
jobs:
1016
test:
@@ -18,7 +24,7 @@ jobs:
1824

1925
steps:
2026
- name: Checkout
21-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
27+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2228
with:
2329
submodules: true
2430
fetch-depth: 0
@@ -35,8 +41,8 @@ jobs:
3541
id: changed-files-glob
3642
uses: ./
3743
with:
38-
files: |
39-
test/*.txt
44+
files: ${{ inputs.files }}
45+
files_separator: " " # Space delimited files (default is "\n")
4046

4147
- name: Show output
4248
run: |

.github/workflows/matrix-example.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
matrix: ${{ steps.changed-files.outputs.all_changed_files }}
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
20+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2121
with:
2222
fetch-depth: 0
2323
- name: Get changed files
@@ -39,7 +39,7 @@ jobs:
3939
fail-fast: false
4040
steps:
4141
- name: Checkout
42-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
42+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4343
- name: Test
4444
run: |
4545
echo ${{ matrix.files }}

.github/workflows/multi-job-example.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
all_changed_files: ${{ steps.changed-files.outputs.all_changed_files }}
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
22+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2323
with:
2424
fetch-depth: 0
2525
- name: Get changed files
@@ -45,7 +45,7 @@ jobs:
4545
all_changed_files: ${{ steps.changed-files.outputs.all_changed_files }}
4646
steps:
4747
- name: Checkout
48-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
48+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4949
with:
5050
fetch-depth: 0
5151
- name: Get changed files

.github/workflows/sync-release-version.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
update-version:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
16+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
1717
with:
1818
fetch-depth: 0
1919
- name: Run release-tagger
@@ -36,9 +36,9 @@ jobs:
3636
paths: |
3737
package.json
3838
- name: Run git-cliff
39-
uses: tj-actions/git-cliff@75599f745633e29f99bd9e14a30865b7d2fcbe84 # v1.5.0
39+
uses: tj-actions/git-cliff@679041f051a4d2ab452f7e5e7b0eed2abee21131 # v2.2.0
4040
- name: Create Pull Request
41-
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
41+
uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
4242
with:
4343
base: "main"
4444
labels: "merge when passing"

0 commit comments

Comments
 (0)