-
Notifications
You must be signed in to change notification settings - Fork 30
Closed
Description
I have created a workflow on Github Enterprise 3.12 with the following
name: CI Code linting
on:
push
workflow_dispatch:
permissions:
contents: write
pages: write
id-token: write
pull-requests: write
jobs:
linting-with-ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install the latest version of ruff
uses: astral-sh/ruff-action@v3
with:
github_token: ${{ secrets.FULL_ACCESS_TOKEN }}Note that I gave a lot more permissions than needed, I guess, and still get the "not found" as shown below:
I can visit https://docs.github.com/enterprise-server@3.12/rest/releases/releases#get-the-latest-release
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels

