Skip to content

Commit e754314

Browse files
build(deps): bump the github-actions group across 1 directory with 2 updates (#763)
Bumps the github-actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '6' 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 1e85e80 commit e754314

6 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/codeql.yaml

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@v6
58+
uses: actions/checkout@v7
5959

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

.github/workflows/push-images.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: dev-env
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v6
17+
- uses: actions/checkout@v7
1818
with:
1919
fetch-depth: 0
2020

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
outputs:
1717
prepared: ${{ steps.validate.outputs.prepared }}
1818
steps:
19-
- uses: actions/checkout@v6
19+
- uses: actions/checkout@v7
2020

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

49-
- uses: actions/checkout@v6
49+
- uses: actions/checkout@v7
5050
with:
5151
fetch-depth: 0
5252

@@ -56,7 +56,7 @@ jobs:
5656
echo "Branch found: $branch"
5757
echo "BRANCH_NAME=$branch" >> $GITHUB_ENV
5858
59-
- uses: actions/checkout@v6
59+
- uses: actions/checkout@v7
6060
with:
6161
fetch-depth: 0
6262
ref: ${{ env.BRANCH_NAME }}

.github/workflows/test.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
name: Validate Zenodo metadata
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v6
23+
- uses: actions/checkout@v7
2424

2525
- name: Cache Zenodo JSON schema
2626
id: cache-schema
27-
uses: actions/cache@v5
27+
uses: actions/cache@v6
2828
with:
2929
path: /tmp/zenodo_schema.json
3030
key: zenodo-schema-${{ hashFiles('.pre-commit-config.yaml') }}
@@ -48,7 +48,7 @@ jobs:
4848
shell: bash -l {0}
4949

5050
steps:
51-
- uses: actions/checkout@v6
51+
- uses: actions/checkout@v7
5252

5353
- name: Setup Pixi
5454
uses: prefix-dev/setup-pixi@v0.9.6
@@ -75,7 +75,7 @@ jobs:
7575
shell: bash -l {0}
7676

7777
steps:
78-
- uses: actions/checkout@v6
78+
- uses: actions/checkout@v7
7979

8080
- uses: dorny/paths-filter@v4
8181
id: filter
@@ -122,13 +122,13 @@ jobs:
122122
echo "MONTH=$(date +'%Y%m')" >> $GITHUB_ENV # cutouts
123123
echo "VERSIONS_HASH=${{ hashFiles('data/versions.csv') }}" >> $GITHUB_ENV
124124
125-
- uses: actions/cache@v5
125+
- uses: actions/cache@v6
126126
if: steps.filter.outputs.src == 'true' || github.event_name == 'schedule'
127127
with:
128128
path: data
129129
key: data-${{ env.WEEK }}-${{ env.VERSIONS_HASH }}
130130

131-
- uses: actions/cache@v5
131+
- uses: actions/cache@v6
132132
if: steps.filter.outputs.src == 'true' || github.event_name == 'schedule'
133133
with:
134134
path: cutouts

.github/workflows/update-lockfile.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
outputs:
1919
has_diff: ${{ steps.check_diff.outputs.has_diff }}
2020
steps:
21-
- uses: actions/checkout@v6
21+
- uses: actions/checkout@v7
2222
with:
2323
fetch-depth: 0
2424

@@ -54,7 +54,7 @@ jobs:
5454
run:
5555
shell: bash -l {0}
5656
steps:
57-
- uses: actions/checkout@v6
57+
- uses: actions/checkout@v7
5858

5959
- name: Setup Pixi
6060
uses: prefix-dev/setup-pixi@v0.9.6
@@ -94,7 +94,7 @@ jobs:
9494
needs: update-locked-environment
9595
runs-on: ubuntu-latest
9696
steps:
97-
- uses: actions/checkout@v6
97+
- uses: actions/checkout@v7
9898

9999
- name: Download all artifacts
100100
uses: actions/download-artifact@v8
@@ -111,7 +111,7 @@ jobs:
111111
needs: update-locked-environment
112112
runs-on: ubuntu-latest
113113
steps:
114-
- uses: actions/checkout@v6
114+
- uses: actions/checkout@v7
115115
- name: Download all artifacts
116116
uses: actions/download-artifact@v8
117117
with:

.github/workflows/windows-installer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
env:
2929
TAG: ${{ github.event.release.tag_name || inputs.release_tag }}
3030
steps:
31-
- uses: actions/checkout@v6
31+
- uses: actions/checkout@v7
3232
with:
3333
ref: ${{ env.TAG || github.event.issue.pull_request && format('refs/pull/{0}/head', github.event.issue.number) }}
3434
fetch-depth: 0

0 commit comments

Comments
 (0)