Browse Source

Chore(actions): update versions (#375)

pull/377/head
Jason Lyu 4 months ago
committed by GitHub
parent
commit
592517a00d
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      .github/workflows/docker.yml
  2. 2
      .github/workflows/linter.yml
  3. 5
      .github/workflows/stale.yml

4
.github/workflows/docker.yml

@ -53,7 +53,7 @@ jobs:
- name: Build and Push (dev) - name: Build and Push (dev)
if: github.ref == 'refs/heads/main' if: github.ref == 'refs/heads/main'
uses: docker/build-push-action@v3 uses: docker/build-push-action@v6
with: with:
context: . context: .
push: true push: true
@ -66,7 +66,7 @@ jobs:
- name: Build and Push (latest) - name: Build and Push (latest)
if: startsWith(github.ref, 'refs/tags/') if: startsWith(github.ref, 'refs/tags/')
uses: docker/build-push-action@v5 uses: docker/build-push-action@v6
with: with:
context: . context: .
push: true push: true

2
.github/workflows/linter.yml

@ -14,7 +14,7 @@ jobs:
lint: lint:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Setup Go - name: Setup Go
uses: actions/setup-go@v5 uses: actions/setup-go@v5

5
.github/workflows/stale.yml

@ -1,5 +1,10 @@
name: Mark stale issues and pull requests name: Mark stale issues and pull requests
permissions:
contents: write
issues: write
pull-requests: write
on: on:
schedule: schedule:
- cron: "0 10 * * *" - cron: "0 10 * * *"

Loading…
Cancel
Save