chore(release): merge master (76f4d254f8)

This commit is contained in:
github-actions[bot] 2020-10-16 13:05:14 +00:00
commit 033e466982
3 changed files with 15 additions and 11 deletions

View file

@ -41,6 +41,12 @@
"// renovate: datasource=(?<datasource>[a-z-]+?) depName=(?<depName>.+?)(?: versioning=(?<versioning>[a-z-]+?))?\\s+readonly\\s+tag\\s+=\\s+'(?<currentValue>.+?)';" "// renovate: datasource=(?<datasource>[a-z-]+?) depName=(?<depName>.+?)(?: versioning=(?<versioning>[a-z-]+?))?\\s+readonly\\s+tag\\s+=\\s+'(?<currentValue>.+?)';"
], ],
"versioningTemplate": "{{#if versioning}}{{versioning}}{{else}}semver{{/if}}" "versioningTemplate": "{{#if versioning}}{{versioning}}{{else}}semver{{/if}}"
},
{
"fileMatch": ["^\\.github/workflows/[^/]+\\.ya?ml$"],
"matchStrings": ["uses: (?<depName>[a-z-/]+?)@(?<currentValue>.+?)\\s"],
"datasourceTemplate": "github-tags",
"versioningTemplate": "docker"
} }
] ]
} }

View file

@ -26,22 +26,20 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2.1.0 uses: actions/checkout@v2.3.3
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Lint commit messages - name: Lint commit messages
uses: wagoid/commitlint-github-action@v1.6.0 uses: wagoid/commitlint-github-action@v2.1.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
lint: lint:
needs: [cleanup] needs: [cleanup]
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2.1.0 uses: actions/checkout@v2.3.3
- name: Setup node - name: Setup node
uses: actions/setup-node@v1.4.1 uses: actions/setup-node@v1.4.4
with: with:
node-version: '12.x' node-version: '12.x'
- name: Install project - name: Install project
@ -58,7 +56,7 @@ jobs:
configurationFile: [example/renovate-config.js, example/renovate.json] configurationFile: [example/renovate-config.js, example/renovate.json]
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2.1.0 uses: actions/checkout@v2.3.3
- name: Install project - name: Install project
run: npm ci run: npm ci
- name: Build - name: Build
@ -84,7 +82,7 @@ jobs:
&& github.ref == 'refs/heads/master' && github.ref == 'refs/heads/master'
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2.1.0 uses: actions/checkout@v2.3.3
with: with:
fetch-depth: 0 fetch-depth: 0
ref: 'release' ref: 'release'
@ -98,7 +96,7 @@ jobs:
run: | run: |
git merge -m 'chore(release): merge master (${{ github.sha }})' ${{ github.sha }} git merge -m 'chore(release): merge master (${{ github.sha }})' ${{ github.sha }}
- name: Setup node - name: Setup node
uses: actions/setup-node@v1.4.1 uses: actions/setup-node@v1.4.4
with: with:
node-version: '12.x' node-version: '12.x'
- name: Install project - name: Install project
@ -119,7 +117,7 @@ jobs:
- name: Publish release - name: Publish release
run: git push --follow-tags run: git push --follow-tags
- name: Publish GitHub release - name: Publish GitHub release
uses: actions/create-release@v1.0.1 uses: actions/create-release@v1.1.4
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with: with:

View file

@ -1,7 +1,7 @@
class Docker { class Docker {
readonly repository = 'renovate/renovate'; readonly repository = 'renovate/renovate';
// renovate: datasource=docker depName=renovate/renovate versioning=docker // renovate: datasource=docker depName=renovate/renovate versioning=docker
readonly tag = '23.49.2-slim'; readonly tag = '23.49.6-slim';
readonly tagSuffix = '-slim'; readonly tagSuffix = '-slim';
image(): string { image(): string {