Skip to content

Commit b707c6f

Browse files
authored
Merge branch 'main' into renovate/minor
2 parents 8f19d12 + 01eaa0f commit b707c6f

7 files changed

+18
-18
lines changed

.github/workflows/bump-version.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
build:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v3
18-
- uses: actions/setup-node@v3
17+
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3
18+
- uses: actions/setup-node@969bd2663942d722d85b6a8626225850c2f7be4b # tag=v3
1919
with:
2020
node-version: 16
2121
cache: "npm"
@@ -24,13 +24,13 @@ jobs:
2424
npm run build
2525
- name: Bump version and push tag
2626
id: tag_version
27-
uses: mathieudutour/github-tag-action@v6.0
27+
uses: mathieudutour/github-tag-action@d745f2e74aaf1ee82e747b181f7a0967978abee0 # tag=v6.0
2828
with:
2929
github_token: ${{ secrets.GITHUB_TOKEN }}
3030
release_branches: main
3131
pre_release_branches: dev
3232
- name: Create a GitHub release
33-
uses: ncipollo/release-action@v1
33+
uses: ncipollo/release-action@4c75f0f2e4ae5f3c807cf0904605408e319dcaac # tag=v1
3434
with:
3535
tag: ${{ steps.tag_version.outputs.new_tag }}
3636
name: Release ${{ steps.tag_version.outputs.new_tag }}

.github/workflows/codeql-analysis.yml

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

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v2
45+
uses: github/codeql-action/init@e0e5ded33cabb451ae0a9768fc7b0410bad9ad44 # tag=v2
4646
with:
4747
languages: ${{ matrix.language }}
4848
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -56,7 +56,7 @@ jobs:
5656
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5757
# If this step fails, then you should remove it and run the build manually (see below)
5858
- name: Autobuild
59-
uses: github/codeql-action/autobuild@v2
59+
uses: github/codeql-action/autobuild@e0e5ded33cabb451ae0a9768fc7b0410bad9ad44 # tag=v2
6060

6161
# ℹ️ Command-line programs to run using the OS shell.
6262
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -69,4 +69,4 @@ jobs:
6969
# ./location_of_script_within_repo/buildscript.sh
7070

7171
- name: Perform CodeQL Analysis
72-
uses: github/codeql-action/analyze@v2
72+
uses: github/codeql-action/analyze@e0e5ded33cabb451ae0a9768fc7b0410bad9ad44 # tag=v2

.github/workflows/test_failure_organisation_not_installed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
action_step_conclusion: ${{ steps.use_action.conclusion }}
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3
2323
- name: Use action
2424
id: use_action
2525
uses: ./

.github/workflows/test_failure_repository_not_installed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
action_step_conclusion: ${{ steps.use_action.conclusion }}
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3
2323
- name: Use action
2424
id: use_action
2525
uses: ./

.github/workflows/test_organisation_installed.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
2424
steps:
2525
- name: Checkout specified branch
2626
if: github.event_name == 'workflow_dispatch'
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3
2828
with:
2929
ref: ${{ github.event.inputs.branch }}
3030

3131
- name: Checkout
3232
if: github.event_name != 'workflow_dispatch'
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3
3434

3535
- name: Use action
3636
id: use_action
@@ -49,7 +49,7 @@ jobs:
4949
console.log(JSON.stringify(repo, null, 2));
5050
5151
- name: Use token to checkout repository
52-
uses: actions/checkout@v3
52+
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3
5353
with:
5454
token: ${{ steps.use_action.outputs.token }}
5555
repository: CattleDip/demo-gha-install-token

.github/workflows/test_repository_installed.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
2424
steps:
2525
- name: Checkout specified branch
2626
if: github.event_name == 'workflow_dispatch'
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3
2828
with:
2929
ref: ${{ github.event.inputs.branch }}
3030

3131
- name: Checkout
3232
if: github.event_name != 'workflow_dispatch'
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3
3434

3535
- name: Use action
3636
id: use_action
@@ -48,7 +48,7 @@ jobs:
4848
console.log(JSON.stringify(repo, null, 2));
4949
5050
- name: Use token to checkout repository
51-
uses: actions/checkout@v3
51+
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3
5252
with:
5353
token: ${{ steps.use_action.outputs.token }}
5454
repository: sammcj/demo-gha-install-token

.github/workflows/test_repository_installed_limited.yml

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

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3
2323

2424
- name: Use action
2525
id: use_action
@@ -38,7 +38,7 @@ jobs:
3838
console.log(JSON.stringify(repo, null, 2));
3939
4040
- name: Use token to checkout repository
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3
4242
with:
4343
token: ${{ steps.use_action.outputs.token }}
4444
repository: sammcj/demo-gha-install-token

0 commit comments

Comments
 (0)