Skip to content

Commit e04455b

Browse files
committed
Update labels
1 parent 48f3ccc commit e04455b

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/auto-approve.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on: pull_request_target
44

55
jobs:
66
auto-approve:
7-
runs-on: ubuntu-latest
7+
runs-on: ubuntu-24.04
88
permissions:
99
pull-requests: write
1010
if: github.actor == 'dependabot[bot]'
1111
steps:
12-
- uses: hmarr/auto-approve-action@v3
12+
- uses: hmarr/auto-approve-action@v4
1313
with:
1414
github-token: ${{ secrets.PAT_TOKEN }}

.github/workflows/codeql.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
jobs:
1515
Analyze:
1616
name: Analyze
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-24.04
1818
permissions:
1919
actions: read
2020
contents: read

.github/workflows/dependabot-auto-merge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515

1616
jobs:
1717
dependabot:
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-24.04
1919
if: ${{ github.actor == 'dependabot[bot]'}}
2020
steps:
2121
- name: Dependabot metadata

.github/workflows/docker.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
Build-and-Push:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-24.04
1111

1212
# We want to filter out dependabot and pre-commit
1313
# automated pushes to main
@@ -50,4 +50,4 @@ jobs:
5050
cache-from: type=registry,ref=ghcr.io/${{ github.repository_owner }}/rodhaj-build-cache:bot
5151
cache-to: type=registry,mode=max,ref=ghcr.io/${{ github.repository_owner }}/rodhaj-build-cache:bot
5252
tags: ${{ steps.meta.outputs.tags }}
53-
labels: ${{ steps.meta.outputs.labels }}
53+
labels: ${{ steps.meta.outputs.labels }}

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
Analyze:
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-24.04
1414

1515
strategy:
1616
fail-fast: false

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- main
66
jobs:
77
Bundle:
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-24.04
99
if: contains(github.event.head_commit.message, '#major') || contains(github.event.head_commit.message, '#minor') || contains(github.event.head_commit.message, '#patch')
1010
steps:
1111
- name: Checkout Repository
@@ -31,7 +31,7 @@ jobs:
3131

3232

3333
Release:
34-
runs-on: ubuntu-latest
34+
runs-on: ubuntu-24.04
3535
needs: Bundle
3636
if: contains(github.event.head_commit.message, '#major') || contains(github.event.head_commit.message, '#minor') || contains(github.event.head_commit.message, '#patch')
3737
steps:

0 commit comments

Comments
 (0)