Skip to content

Commit

Permalink
Remove version comments from github actions
Browse files Browse the repository at this point in the history
Until dependabot/dependabot-core#4691 is fixed this is too much work to maintain those comments. Note that git history can be used to know the version.
  • Loading branch information
marcwrobel committed Oct 19, 2022
1 parent 12f9d9f commit 586334e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:
runs-on: 'ubuntu-latest'
steps:
- name: Checkout repository
uses: 'actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8' # v3.1.0
uses: 'actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8'

- name: Unshallow repository
run: 'git fetch --prune --unshallow' # needed for sonar analysis

- name: Set up Java
uses: 'actions/setup-java@de1bb2b0c5634f0fc4438d7aa9944e68f9bf86cc' # v3.6.0
uses: 'actions/setup-java@de1bb2b0c5634f0fc4438d7aa9944e68f9bf86cc'
with:
distribution: 'temurin'
java-version: '17'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
java: ['8', '11', '17', '19']
steps:
- name: Checkout repository
uses: 'actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8' # v3.1.0
uses: 'actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8'

- name: Set up Java ${{ matrix.java }}
uses: 'actions/setup-java@de1bb2b0c5634f0fc4438d7aa9944e68f9bf86cc' # v3.6.0
uses: 'actions/setup-java@de1bb2b0c5634f0fc4438d7aa9944e68f9bf86cc'
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ jobs:

steps:
- name: Checkout repository
uses: 'actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8' # v3.1.0
uses: 'actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8'
with:
# We must fetch at least the immediate parents so that if this is a pull request then we can check out the head.
fetch-depth: 2

- name: Initialize CodeQL
uses: 'github/codeql-action/init@cc7986c02bac29104a72998e67239bb5ee2ee110' # v2.1.28
uses: 'github/codeql-action/init@cc7986c02bac29104a72998e67239bb5ee2ee110'
with:
languages: ${{ matrix.language }}
queries: 'security-and-quality'

- name: Autobuild
uses: 'github/codeql-action/autobuild@cc7986c02bac29104a72998e67239bb5ee2ee110' # v2.1.28
uses: 'github/codeql-action/autobuild@cc7986c02bac29104a72998e67239bb5ee2ee110'

- name: Perform CodeQL Analysis
uses: 'github/codeql-action/analyze@cc7986c02bac29104a72998e67239bb5ee2ee110' # v2.1.28
uses: 'github/codeql-action/analyze@cc7986c02bac29104a72998e67239bb5ee2ee110'

0 comments on commit 586334e

Please sign in to comment.