Skip to content

Commit 061a558

Browse files
authored
Merge pull request #2 from PyPSA/dependabot/github_actions/github-actions-c6a244ea9e
chore(deps): bump the github-actions group with 7 updates
2 parents 3963c1b + 0b2a86f commit 061a558

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/push-image.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,23 +24,23 @@ jobs:
2424

2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v6
2828
with:
2929
fetch-depth: 0
3030

3131
- name: Set up Docker Buildx
32-
uses: docker/setup-buildx-action@v3
32+
uses: docker/setup-buildx-action@v4
3333

3434
- name: Log in to GitHub Container Registry
35-
uses: docker/login-action@v3
35+
uses: docker/login-action@v4
3636
with:
3737
registry: ${{ env.REGISTRY }}
3838
username: ${{ github.repository_owner }}
3939
password: ${{ secrets.GITHUB_TOKEN }}
4040

4141
- name: Extract metadata for Docker
4242
id: meta
43-
uses: docker/metadata-action@v5
43+
uses: docker/metadata-action@v6
4444
with:
4545
images: ${{ env.FULL_IMAGE_NAME }}
4646
tags: |
@@ -52,7 +52,7 @@ jobs:
5252
type=raw,value=latest,enable=${{ startsWith(github.ref, 'refs/tags/v') }}
5353
5454
- name: Build and push Docker image
55-
uses: docker/build-push-action@v5
55+
uses: docker/build-push-action@v7
5656
with:
5757
context: .
5858
file: ./Dockerfile

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 0
2323

2424
- name: Set up Python
25-
uses: actions/setup-python@v5
25+
uses: actions/setup-python@v6
2626
with:
2727
python-version: "3.12"
2828

2929
- name: Install uv
30-
uses: astral-sh/setup-uv@v6
30+
uses: astral-sh/setup-uv@v7
3131

3232
- name: Install dependencies
3333
run: uv sync --locked --all-extras

0 commit comments

Comments
 (0)