Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump node version for github action workflows #511

Merged
merged 1 commit into from
Mar 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/add_identifiers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

# Checks-out the repo
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4

# Patch Fastlane Match to not print tables
- name: Patch Match Tables
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/build_xdrip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
if: |
needs.check_alive_and_permissions.outputs.WORKFLOW_PERMISSION == 'true' &&
(vars.SCHEDULED_BUILD != 'false' || vars.SCHEDULED_SYNC != 'false')
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GH_PAT }}
ref: alive
Expand All @@ -107,7 +107,7 @@ jobs:
needs.check_alive_and_permissions.outputs.WORKFLOW_PERMISSION == 'true' &&
vars.SCHEDULED_SYNC != 'false' && github.repository_owner != 'JohanDegraeve'
id: sync
uses: aormsby/Fork-Sync-With-Upstream-action@v3.4
uses: aormsby/Fork-Sync-With-Upstream-action@v3.4.1
with:
target_sync_branch: ${{ env.ALIVE_BRANCH }}
shallow_since: 6 months ago
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
if: |
needs.check_alive_and_permissions.outputs.WORKFLOW_PERMISSION == 'true' &&
vars.SCHEDULED_SYNC != 'false'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GH_PAT }}
ref: ${{ env.TARGET_BRANCH }}
Expand All @@ -183,7 +183,7 @@ jobs:
needs.check_alive_and_permissions.outputs.WORKFLOW_PERMISSION == 'true' &&
vars.SCHEDULED_SYNC != 'false' && github.repository_owner != 'JohanDegraeve'
id: sync
uses: aormsby/Fork-Sync-With-Upstream-action@v3.4
uses: aormsby/Fork-Sync-With-Upstream-action@v3.4.1
with:
target_sync_branch: ${{ env.TARGET_BRANCH }}
shallow_since: 6 months ago
Expand Down Expand Up @@ -213,7 +213,7 @@ jobs:
echo "NEW_COMMITS=${{ steps.sync.outputs.has_new_commits }}" >> $GITHUB_OUTPUT

- name: Checkout Repo for building
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.GH_PAT }}
submodules: recursive
Expand Down Expand Up @@ -256,7 +256,7 @@ jobs:
# Upload Build artifacts
- name: Upload build log, IPA and Symbol artifacts
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create_certs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

# Checks-out the repo
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4

# Patch Fastlane Match to not print tables
- name: Patch Match Tables
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate_secrets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
TEAMID: ${{ secrets.TEAMID }}
steps:
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Project Dependencies
run: bundle install
Expand Down