From 6e3b376f16f6dfa0da4fc9723dc9caa623a9e8e0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Mar 2026 14:35:26 +0000 Subject: [PATCH] build(deps): bump the github-actions group across 1 directory with 6 updates Bumps the github-actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `8` | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `8` | | [github/codeql-action](https://github.com/github/codeql-action) | `3` | `4` | | [docker/login-action](https://github.com/docker/login-action) | `3` | `4` | Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) Updates `actions/download-artifact` from 4 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v8) Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v8) Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v3...v4) Updates `docker/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql.yml | 6 +++--- .github/workflows/publish-reporter-image.yml | 2 +- action.yml | 16 ++++++++-------- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 1acf60a3..70d84e99 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -55,11 +55,11 @@ jobs: # your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 # 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 }} @@ -87,6 +87,6 @@ jobs: exit 1 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 with: category: "/language:${{matrix.language}}" diff --git a/.github/workflows/publish-reporter-image.yml b/.github/workflows/publish-reporter-image.yml index 4e692f1d..73c303d3 100644 --- a/.github/workflows/publish-reporter-image.yml +++ b/.github/workflows/publish-reporter-image.yml @@ -12,7 +12,7 @@ jobs: - name: 'Checkout GitHub Action' uses: actions/checkout@main - name: 'Login to GitHub Container Registry' - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.repository_owner }} diff --git a/action.yml b/action.yml index 82269b3d..7be97bf9 100644 --- a/action.yml +++ b/action.yml @@ -125,7 +125,7 @@ runs: - name: Upload artifacts (logs) if: ${{ inputs.step == 'run-self-hosted-validation' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: logs path: | @@ -140,7 +140,7 @@ runs: - name: Upload artifacts (benchmarks) if: ${{ inputs.step == 'run-self-hosted-validation' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: benchmarks path: | @@ -151,7 +151,7 @@ runs: - name: Upload artifacts (results) if: ${{ inputs.step == 'run-self-hosted-validation' }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: results path: | @@ -177,7 +177,7 @@ runs: - name: Download artifacts if: ${{ inputs.step == 'create-comment' }} - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 - name: Move artifacts to home directory if: ${{ inputs.step == 'create-comment' }} @@ -223,7 +223,7 @@ runs: - name: Checkout model repo if: ${{ inputs.step == 'create-comment' }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 path: model-repo @@ -255,7 +255,7 @@ runs: - name: Checkout validator repo if: ${{ inputs.step == 'create-comment' }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: lkstrp/pypsa-validator ref: ${{ github.repository }} @@ -365,7 +365,7 @@ runs: - name: Retrieve or create comment if: ${{ inputs.step == 'create-comment' }} id: comment - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const owner = context.repo.owner; @@ -408,7 +408,7 @@ runs: - name: Update comment if: ${{ inputs.step == 'create-comment' }} - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const fs = require('fs');