Skip to content

Commit 0fd0a1c

Browse files
build(deps): bump the github-actions group with 2 updates (PyPSA#1344)
Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 1871897 commit 0fd0a1c

4 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
# 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
5656
steps:
5757
- name: Checkout repository
58-
uses: actions/checkout@v4
58+
uses: actions/checkout@v5
5959

6060
# Initializes the CodeQL tools for scanning.
6161
- name: Initialize CodeQL

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
outputs:
1616
prepared: ${{ steps.validate.outputs.prepared }}
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919

2020
- name: Validate commit message
2121
id: validate
@@ -45,7 +45,7 @@ jobs:
4545
app-id: ${{ vars.PYPSA_BOT_ID }}
4646
private-key: ${{ secrets.PYPSA_BOT_PRIVATE_KEY }}
4747

48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v5
4949
with:
5050
fetch-depth: 0
5151

@@ -55,7 +55,7 @@ jobs:
5555
echo "Branch found: $branch"
5656
echo "BRANCH_NAME=$branch" >> $GITHUB_ENV
5757
58-
- uses: actions/checkout@v4
58+
- uses: actions/checkout@v5
5959
with:
6060
fetch-depth: 0
6161
ref: ${{ env.BRANCH_NAME }}
@@ -133,15 +133,15 @@ jobs:
133133
if: ${{ needs.check-preparation.outputs.prepared == 'true' }}
134134
runs-on: ubuntu-latest
135135
steps:
136-
- uses: actions/checkout@v4
136+
- uses: actions/checkout@v5
137137
- uses: hynek/build-and-inspect-python-package@v2
138138

139139
release:
140140
name: Create GitHub release
141141
needs: [build]
142142
runs-on: ubuntu-latest
143143
steps:
144-
- uses: actions/checkout@v4
144+
- uses: actions/checkout@v5
145145
- uses: softprops/action-gh-release@v2
146146
with:
147147
body: |
@@ -159,7 +159,7 @@ jobs:
159159
permissions:
160160
id-token: write
161161
steps:
162-
- uses: actions/download-artifact@v4
162+
- uses: actions/download-artifact@v5
163163
with:
164164
name: Packages
165165
path: dist

.github/workflows/test-models.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
shell: bash -l {0}
3232

3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
with:
3636
repository: PyPSA/pypsa-eur
3737
ref: master
@@ -132,7 +132,7 @@ jobs:
132132
shell: bash -l {0}
133133

134134
steps:
135-
- uses: actions/checkout@v4
135+
- uses: actions/checkout@v5
136136
with:
137137
repository: PyPSA/pypsa-de
138138
ref: main

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: Build and verify package
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
with:
2626
fetch-depth: 0 # Needed for setuptools_scm
2727
- uses: hynek/build-and-inspect-python-package@v2
@@ -53,7 +53,7 @@ jobs:
5353
env:
5454
MPLBACKEND: Agg # https://github.com/orgs/community/discussions/26434
5555
steps:
56-
- uses: actions/checkout@v4
56+
- uses: actions/checkout@v5
5757
with:
5858
fetch-depth: 0 # Needed for setuptools_scm
5959

@@ -72,7 +72,7 @@ jobs:
7272
brew install hdf5
7373
7474
- name: Download package
75-
uses: actions/download-artifact@v4
75+
uses: actions/download-artifact@v5
7676
with:
7777
name: Packages
7878
path: dist
@@ -105,7 +105,7 @@ jobs:
105105
runs-on: ubuntu-latest
106106

107107
steps:
108-
- uses: actions/checkout@v4
108+
- uses: actions/checkout@v5
109109
with:
110110
fetch-depth: 0 # Needed for setuptools_scm
111111

@@ -115,7 +115,7 @@ jobs:
115115
python-version: 3.12
116116

117117
- name: Download package
118-
uses: actions/download-artifact@v4
118+
uses: actions/download-artifact@v5
119119
with:
120120
name: Packages
121121
path: dist

0 commit comments

Comments
 (0)