🔒 Version action versions and auto-update them

This commit is contained in:
Lars Gohr
2022-04-09 20:57:38 +02:00
parent b3a06d90fd
commit 6268ba1f1b
5 changed files with 11 additions and 7 deletions

View File

@@ -3,4 +3,8 @@ updates:
- package-ecosystem: "docker" - package-ecosystem: "docker"
directory: "/" directory: "/"
schedule: schedule:
interval: "daily" interval: "daily"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"

View File

@@ -1,7 +1,7 @@
name: Issue assignment name: Issue assignment
on: on:
issues: issues:
types: [opened] types: [ opened ]
jobs: jobs:
auto-assign: auto-assign:
runs-on: ubuntu-latest runs-on: ubuntu-latest

View File

@@ -4,6 +4,6 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@master - uses: actions/checkout@v3
- name: Build the Docker image - name: Build the Docker image
run: docker build . run: docker build .

View File

@@ -2,12 +2,12 @@ name: Integration Test
on: on:
push: push:
branches: branches:
- master - main
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@master - uses: actions/checkout@v3
- name: Publish to Registry - name: Publish to Registry
if: ${{ github.actor != 'dependabot[bot]' }} if: ${{ github.actor != 'dependabot[bot]' }}
uses: ./ uses: ./

View File

@@ -2,12 +2,12 @@ name: Integration Test Github
on: on:
push: push:
branches: branches:
- master - main
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@master - uses: actions/checkout@v3
- name: Publish to Registry - name: Publish to Registry
if: ${{ github.actor != 'dependabot[bot]' }} if: ${{ github.actor != 'dependabot[bot]' }}
uses: ./ uses: ./