From 169b3ed2138071916c6f7434a1aecdf93c1d6823 Mon Sep 17 00:00:00 2001 From: Nathaniel Varona <194283+nathanielvarona@users.noreply.github.com> Date: Sun, 5 May 2024 02:08:25 +0800 Subject: [PATCH] GitHub Actions Dependency Update --- .github/labels.yml | 3 --- .github/workflows/docker-build.yml | 1 - .github/workflows/pr-labeler.yml | 9 ++++++--- .github/workflows/release-drafter.yml | 5 ++++- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/labels.yml b/.github/labels.yml index e3ceb9f..7986a1c 100644 --- a/.github/labels.yml +++ b/.github/labels.yml @@ -28,6 +28,3 @@ - name: 'type: chore' description: Chores. color: 38646B -- name: 'hacktoberfest-accepted' - description: Hacktoberfest Participation. - color: 5AAEAD \ No newline at end of file diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 0ddb366..891c580 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -4,7 +4,6 @@ on: release: types: [released] - jobs: docker-build-push: runs-on: ubuntu-latest diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml index d99bf8c..8ede93e 100644 --- a/.github/workflows/pr-labeler.yml +++ b/.github/workflows/pr-labeler.yml @@ -5,10 +5,13 @@ on: jobs: pr-labeler: - runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + runs-on: ubuntu-22.04 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: micnncim/action-label-syncer@v1 - - uses: TimonVS/pr-labeler-action@v4 + - uses: TimonVS/pr-labeler-action@v5 diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index cf8ff8e..7a52bac 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -7,8 +7,11 @@ on: jobs: update_release_draft: + permissions: + contents: write + pull-requests: write runs-on: ubuntu-22.04 steps: - - uses: release-drafter/release-drafter@v5 + - uses: release-drafter/release-drafter@v6 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}