Skip to content

Commit 39be3ef

Browse files
authored
Merge pull request #499 from stackhpc/pin-actions
Pin actions to latest commit
2 parents b005668 + a19746a commit 39be3ef

18 files changed

+34
-33
lines changed

.github/actions/setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ runs:
2020
shell: bash
2121

2222
# Install python dependencies for ansible server side
23-
- uses: actions/setup-python@v6
23+
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
2424
with:
2525
python-version: 3.11.x
2626
# Cache Python dependencies

.github/actions/slack-alert/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@ runs:
3232
using: composite
3333
steps:
3434
- name: Send message to Slack via Workflow Builder
35-
uses: slackapi/slack-github-action@v1.26.0
35+
uses: slackapi/slack-github-action@af78098f536edbc4de71162a307590698245be95 # v3.0.1
3636
with:
37+
webhook-type: "incoming-webhook"
3738
payload: |
3839
{
3940
"channel-id": "${{ env.SLACK_CHANNEL_ID }}",

.github/workflows/ansible-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v6
16+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1717

1818
# Python version must be pinned because of issue with Ubuntu permissions
1919
# See https://github.com/actions/runner-images/issues/11499
2020
- name: Set up Python
21-
uses: actions/setup-python@v6
21+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
2222
with:
2323
python-version: '3.12'
2424

.github/workflows/ansible-validations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v6
18+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1919

2020
- name: Setup Release Train & dependencies
2121
uses: ./.github/actions/setup

.github/workflows/container-promote-old.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
steps:
3636
- name: Checkout
37-
uses: actions/checkout@v6
37+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3838

3939
- name: Setup Release Train & dependencies
4040
uses: ./.github/actions/setup

.github/workflows/container-promote.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@v6
29+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3030

3131
- name: Setup Release Train & dependencies
3232
uses: ./.github/actions/setup
@@ -35,7 +35,7 @@ jobs:
3535
vault-password-file: ${{ env.ANSIBLE_VAULT_PASSWORD_FILE }}
3636

3737
- name: Clone StackHPC Kayobe configuration repository
38-
uses: actions/checkout@v6
38+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3939
with:
4040
repository: stackhpc/stackhpc-kayobe-config
4141
ref: refs/heads/${{ github.event.inputs.kayobe_config_branch }}

.github/workflows/container-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
name: Publish container repositories
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@v6
32+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3333

3434
- name: Setup Release Train & dependencies
3535
uses: ./.github/actions/setup

.github/workflows/container-sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
timeout-minutes: 720
3737
steps:
3838
- name: Checkout
39-
uses: actions/checkout@v6
39+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4040

4141
- name: Setup Release Train & dependencies
4242
uses: ./.github/actions/setup

.github/workflows/docs-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
name: Build documentation
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v6
11-
- uses: actions/setup-python@v6
10+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
11+
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
1212
with:
1313
python-version: 3.x
1414
- run: pip install -r docs-requirements.txt

.github/workflows/docs-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
name: Publish documentation
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v6
13-
- uses: actions/setup-python@v6
12+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
13+
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
1414
with:
1515
python-version: 3.x
1616
- run: pip install -r docs-requirements.txt

0 commit comments

Comments
 (0)