🔒 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"
directory: "/"
schedule:
interval: "daily"
interval: "daily"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"

View File

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

View File

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

View File

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

View File

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