Skip to content

Commit 97616b5

Browse files
authored
Merge pull request #82 from gvatsal60/fix/master_branch_VG
Fix Devcontainer and action files
2 parents a076d20 + 46ad9fe commit 97616b5

File tree

4 files changed

+9
-16
lines changed

4 files changed

+9
-16
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
}
3434
}
3535
},
36-
"image": "mcr.microsoft.com/devcontainers/go:latest",
36+
"image": "mcr.microsoft.com/devcontainers/base:noble",
3737
"runArgs": [
3838
"--rm",
3939
"--name=vsc-${localEnv:USER}-${containerWorkspaceFolderBasename}-${devcontainerId}"

.github/dependabot.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,3 @@ updates:
1212
directory: "/"
1313
schedule:
1414
interval: "weekly"
15-
- package-ecosystem: "gomod"
16-
directory: "/"
17-
schedule:
18-
interval: "weekly"

.github/workflows/test.yaml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
name: Test
2-
on:
3-
pull_request:
4-
branches: ["*"]
5-
push:
6-
branches:
7-
- master
2+
on: pull_request
3+
permissions:
4+
pull-requests: read
5+
contents: read
86
jobs:
97
test:
108
name: Test Update Script
119
runs-on: ${{ matrix.os }}
1210
strategy:
1311
matrix:
14-
os: [macos-13, macos-latest]
12+
os: [macos-13, macos-14, macos-15, macos-latest]
1513
steps:
1614
- name: Checkout Code
1715
uses: actions/checkout@v5

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ Then Run `update` from the terminal and it will run the script
2626
For easy access, save the `update-all.sh` script to your Mac user's home folder, make it executable, and then run it
2727

2828
```sh
29-
USER_SCRIPTS="${HOME}/"
30-
curl -fsSLo "$USER_SCRIPTS/update" https://raw.githubusercontent.com/andmpel/MacOS-All-In-One-Update-Script/HEAD/update-all.sh
31-
chmod +x "$USER_SCRIPTS/update"
29+
USER_SCRIPTS="${HOME}/update"
30+
curl -fsSLo "${USER_SCRIPTS}" https://raw.githubusercontent.com/andmpel/MacOS-All-In-One-Update-Script/HEAD/update-all.sh
31+
chmod +x "${USER_SCRIPTS}"
3232
```
3333

3434
Now you can run the script anytime by simply typing `./update` from your home directory in your terminal
@@ -39,7 +39,6 @@ Add an alias command to the update script in your .zshrc file
3939

4040
Feel free to edit, or `#`comment out commands from the `update_all()` function of the script to skip them
4141

42-
4342
## Supported Updates
4443

4544
This script currently updates the following:

0 commit comments

Comments
 (0)