Skip to content

Commit

Permalink
Still Testing
Browse files Browse the repository at this point in the history
  • Loading branch information
jesperancinha committed Sep 15, 2024
1 parent 05195e1 commit e38efb6
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/project-signer-java-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@1
uses: actions/checkout@v4

- name: Run dependency update script
run: make deps-java-update

- name: Create pull request
uses: peter-evans/create-pull-request@6
uses: peter-evans/create-pull-request@v7
with:
commit-message: Update java
branch: update-java
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/project-signer-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@7
uses: dependabot/fetch-metadata@v2
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/project-signer-plugins-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@1
uses: actions/checkout@v4

- name: Set up Node.js 20
uses: actions/setup-node@3
uses: actions/setup-node@v4
with:
node-version: '20'

- name: Run dependency update script
run: make deps-plugins-update

- name: Create pull request
uses: peter-evans/create-pull-request@6
uses: peter-evans/create-pull-request@v7
with:
commit-message: Update plugins
branch: update-plugins
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/project-signer-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@2
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'adopt'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/project-signer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@2
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'adopt'
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ deps-cypress-update:
cd e2e; \
ncu -u
deps-plugins-update:
curl -sL https://raw.githubusercontent.com/jesperancinha/project-signer/master/pluginUpdatesOne.sh -H "Cache-Control: no-cache" | bash -s -- $(PARAMS)
curl -sL https://raw.githubusercontent.com/jesperancinha/project-signer/master/pluginUpdatesOne.sh | bash -s -- $(PARAMS)
deps-java-update:
curl -sL https://raw.githubusercontent.com/jesperancinha/project-signer/master/javaUpdatesOne.sh | bash
deps-node-update:
Expand Down
4 changes: 2 additions & 2 deletions depsAllQuickManualUpgrade.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
source pluginUpdatesOne.sh 1 2 3 4 5 6 7 8 9
source pluginUpdatesOne.sh

# shellcheck disable=SC2154
version_command="${versions[${pluginsArr[0]}]} ${versions[${pluginsArr[1]}]} ${versions[${pluginsArr[2]}]} ${versions[${pluginsArr[3]}]} ${versions[${pluginsArr[4]}]} ${versions[${pluginsArr[5]}]} ${versions[${pluginsArr[6]}]} ${versions[${pluginsArr[7]}]} ${versions[${pluginsArr[8]}]}"
Expand Down Expand Up @@ -41,4 +41,4 @@ remote_name="origin"
# cd ..
# fi
#done
cd project-signer || exit
#cd project-signer || exit

0 comments on commit e38efb6

Please sign in to comment.