Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/01-make-dist-worker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# NOTE: This is the unprivileged part of the GHA-01-tarballs ritual,
# running potentially untrusted shell code from the PR source branch.
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
- name: Prepare ccache
# Based on https://docs.github.com/en/actions/reference/workflows-and-actions/dependency-caching#example-using-the-cache-action example
id: cache-ccache
uses: actions/cache@v4
uses: actions/cache@v5
env:
compiler: 'CC=gcc CXX=g++'
cache-name: cache-ccache-${{ env.compiler }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/01-make-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
# We need to find the artifact URL and report it below.
- name: Get Artifact URL
id: get_artifact_url
uses: actions/github-script@v6
uses: actions/github-script@v9
with:
script: |
const res = await github.rest.actions.listArtifactsForRepo({
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
# (at least 12MB as of Nov 2025).
- if: env.GITHUB_REF_TYPE != 'tag' && steps.subst-github-ref-name.outputs.result != 'master'
name: Delete Old Artifacts for this feature branch/PR
uses: actions/github-script@v6
uses: actions/github-script@v9
id: delete_old_artifact_for_pr
continue-on-error: true
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/05-codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v6

# Using hints from https://askubuntu.com/questions/272248/processing-triggers-for-man-db
- if: matrix.language == 'cpp' && matrix.os == 'ubuntu-latest'
Expand All @@ -81,7 +81,7 @@ jobs:
- name: Prepare ccache
# Based on https://docs.github.com/en/actions/reference/workflows-and-actions/dependency-caching#example-using-the-cache-action example
id: cache-ccache
uses: actions/cache@v4
uses: actions/cache@v5
env:
cache-name: cache-ccache-${{ matrix.compiler }}-${{ matrix.NUT_SSL_VARIANTS }}-${{ matrix.NUT_USB_VARIANTS }}
with:
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
Expand All @@ -129,7 +129,7 @@ jobs:
# https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
- if: matrix.build-mode == 'autobuild'
name: Autobuild
uses: github/codeql-action/autobuild@v3
uses: github/codeql-action/autobuild@v4

# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
Expand Down Expand Up @@ -182,6 +182,6 @@ jobs:
run: ccache -sv || ccache -s || echo "FAILED to read ccache info, oh well"

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4
with:
category: "/language:${{matrix.language}}"
2 changes: 1 addition & 1 deletion .github/workflows/08-PyNUTClient.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
fetch-depth: 0
fetch-tags: true
- name: Set up Python 3.13
uses: actions/setup-python@v3
uses: actions/setup-python@v6
with:
python-version: '3.13'
- name: Extract python interpreter path name
Expand Down
Loading