Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,17 @@ jobs:
egress-policy: 'audit'

- name: 'Checkout repository'
uses: 'actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0' # v7.0.0
uses: 'actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1' # v7.0.1

- name: 'Initialize CodeQL'
uses: 'github/codeql-action/init@7188fc363630916deb702c7fdcf4e481b751f97a' # v4.37.1
uses: 'github/codeql-action/init@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81' # v4.37.3
with:
languages: '${{ matrix.language }}'

- name: 'Autobuild'
uses: 'github/codeql-action/autobuild@7188fc363630916deb702c7fdcf4e481b751f97a' # v4.37.1
uses: 'github/codeql-action/autobuild@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81' # v4.37.3

- name: 'Perform CodeQL Analysis'
uses: 'github/codeql-action/analyze@7188fc363630916deb702c7fdcf4e481b751f97a' # v4.37.1
uses: 'github/codeql-action/analyze@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81' # v4.37.3
with:
category: '/language:${{ matrix.language }}'
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
egress-policy: 'audit'

- name: 'Checkout repository'
uses: 'actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0' # v7.0.0
uses: 'actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1' # v7.0.1

- name: 'Dependency Review'
uses: 'actions/dependency-review-action@a1d282b36b6f3519aa1f3fc636f609c47dddb294' # v5.0.0
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
egress-policy: 'audit'

- name: 'Checkout repository'
uses: 'actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0' # v7.0.0
uses: 'actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1' # v7.0.1

- name: 'Set up Python'
uses: 'actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1' # v6.3.0
uses: 'actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97' # v7.0.0
with:
python-version: '3.12'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lf-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
egress-policy: 'audit'

- name: 'git clone https://github.com/Linuxfabrik/lfops'
uses: 'actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0' # v7.0.0
uses: 'actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1' # v7.0.1

- name: 'Log in to GitHub Container Registry'
uses: 'redhat-actions/podman-login@4934294ad0449894bcd1e9f191899d7292469603' # v1.7
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lf-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ jobs:
egress-policy: 'audit'

- name: 'Checkout repository'
uses: 'actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0' # v7.0.0
uses: 'actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1' # v7.0.1

# The interpreter tox builds the test env for. Its absolute path is
# handed to tox via `--discover` below, so this step does not rely on
# the executable staying on PATH once the next step runs.
- name: 'Set up the target Python ${{ matrix.python-version }}'
id: 'target-python'
uses: 'actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1' # v6.3.0
uses: 'actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97' # v7.0.0
with:
python-version: '${{ matrix.python-version }}'

Expand All @@ -49,7 +49,7 @@ jobs:
# requires `filelock >= 3.24.2` from 3.10 on and no filelock that new
# supports 3.9. Listed last, so `python` and `pip` refer to it.
- name: 'Set up the Python that runs tox'
uses: 'actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1' # v6.3.0
uses: 'actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97' # v7.0.0
with:
python-version: '3.13'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pre-commit-autoupdate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
egress-policy: 'audit'

- name: 'Checkout repository'
uses: 'actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0' # v7.0.0
uses: 'actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1' # v7.0.1

- name: 'Set up Python'
uses: 'actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1' # v6.3.0
uses: 'actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97' # v7.0.0
with:
python-version: '3.12'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
egress-policy: 'audit'

- name: 'Checkout code'
uses: 'actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0' # v7.0.0
uses: 'actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1' # v7.0.1
with:
persist-credentials: false

- name: 'Run analysis'
uses: 'ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a' # v2.4.3
uses: 'ossf/scorecard-action@2d1146689b8cda280b9bc96326124645441f03bc' # v2.4.4
with:
results_file: 'results.sarif'
results_format: 'sarif'
Expand All @@ -42,6 +42,6 @@ jobs:
retention-days: 5

- name: 'Upload to code-scanning'
uses: 'github/codeql-action/upload-sarif@7188fc363630916deb702c7fdcf4e481b751f97a' # v4.37.1
uses: 'github/codeql-action/upload-sarif@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81' # v4.37.3
with:
sarif_file: 'results.sarif'