Skip to content

Commit c7cd11c

Browse files
authored
Merge pull request #23 from ycharts/github-actions-commit-hashes
use commit hashes instead of tags for action versions
2 parents 324c323 + 6911f1c commit c7cd11c

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
django-version: [ "4.2" ]
2424
steps:
2525
# Checks-out the repository.
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2727

2828
- name: Set up Python ${{ matrix.python-version }}
29-
uses: actions/setup-python@v4
29+
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
3030
with:
3131
python-version: ${{ matrix.python-version }}
3232
cache: 'pip'
@@ -53,7 +53,7 @@ jobs:
5353
coverage lcov --data-file='.coverage.${{ matrix.python-version }}.${{ matrix.django-version }}'
5454
5555
- name: Coveralls Parallel
56-
uses: coverallsapp/github-action@master
56+
uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b # v2.3.6
5757
with:
5858
github-token: ${{ secrets.github_token }}
5959
flag-name: run-${{ matrix.python-version }}-${{ matrix.django-version }}
@@ -65,7 +65,7 @@ jobs:
6565
runs-on: ubuntu-latest
6666
steps:
6767
- name: Coveralls Finished
68-
uses: coverallsapp/github-action@master
68+
uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b # v2.3.6
6969
with:
7070
github-token: ${{ secrets.github_token }}
7171
parallel-finished: true

renovate.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"github>ycharts/ycharts_systems:renovate-default.json5"
5+
],
6+
"enabledManagers": ["github-actions"]
7+
}

0 commit comments

Comments
 (0)